 body {
        font-family: "Outfit";
        margin: 0;
        padding: 0;
        height: 100dvh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background-image: url("bg.png");
        background-color: #0000;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;

        color: white;
    }

    body::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: 0;
    }

    .content {
        padding: 1rem;
        z-index: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-top: 7rem;
        height: 15rem;
    }

    h1 {
        font-weight: 600;
        font-size: min(11vw, 4rem);
        margin: 0 0 1rem 0;
    }

    p {
        font-weight: 100;
        font-size: min(5.5vw, 1.5rem);
        margin: 0 0 1.5rem 0;
    }

    .input-group {
        display: flex;
        align-items: center;
    }

    .input {
        min-height: 50px;
        max-width: 150px;
        padding: 0 1rem;
        color: #ffffff;
        font-size: 1rem;
        border: none;
        border-radius: var(--input-radius) 0 0 var(--input-radius);
        background-color: rgba(122, 122, 122, 0.5);
        font-weight: 400;
    }

    .input::placeholder {
        color: #c3c3c3;
    }

    .button {
        min-height: 50px;
        padding: .5em 1em;
        border: none;
        border-radius: 0 var(--input-radius) var(--input-radius) 0;
        background-color: rgba(255, 255, 255, 0.7);
        color: #000000;
        font-size: 1rem;
        cursor: pointer;
        transition: background-color .3s ease-in-out;
        font-weight: 400;
    }

    .button:hover {
        background-color: #ffffff;
    }

    .input:focus,
    .input:focus-visible {
        border-color: #ffffff;
        outline: none;
    }

    :root {
        background-color: #000000;
        --input-radius: 2rem;
    }

    #container {
        display: flex;
        align-items: center;
        margin: 0 0 1rem;
        flex-direction: column;
    }

   #message{
    color: white;
    font-weight: 300;
   }

   .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}