body {
    font-family: 'Roboto';
    background-color: black;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1, h2, h3, h4, h5, h6 {
    padding: 0;
    margin: 0;
}

.info-link {
    padding: 0 0 30px 0;
    cursor: pointer;
    text-decoration: underline;
    color: white;
    background: transparent;
    border: none;
    font-size: 16px;
}
.info-link:hover {
    opacity: 0.7;
}

.contact-us-container {
    border: 2px solid white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    min-width: 296px;
    border-radius: 25px;
    padding: 40px;
    margin: 0px 0 40px 0;
}

.contact-us-header-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 0px 0 40px 0;
}

.title {
    font-size: 48px;
    color: white;
    margin-bottom: 10px;
}

.sub-title {
    margin-top: 16px;
    font-size: 14px;
    color: white;
    font-weight: 400;
    max-width: 324px;
}

.sub-title span {
    color: rgba(0, 255, 251, 1);
}

.sub-title a {
    cursor: pointer;
    text-decoration: underline;
    color: white;
}

.sub-title a:hover {
    opacity: 0.7;
}

.contact-us-form {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    row-gap: 20px;
    flex: 1;
}

.contact-us-form label {
    font-size: small;
    margin: 0 0 3px 0;
    display: none;
}

.field-info {
    font-size: 14px;
    color: white;
    font-weight: 400;
    max-width: 324px;
}

.field-info span {
    color: rgba(0, 255, 251, 1);
}

.contact-us-form input[type=text] {
    height: 30px;
    width: 310px;
    font-size: 12px;
    padding: 0 0 0 10px;
    border-radius: 4px;
    border: 2px solid white;
}

.file-box {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
    margin-bottom: 15px;
}

.file-box p {
    padding: 0;
    margin: 0 0 3px 0;
    font-size: 14px;
    color: rgba(0, 255, 251, 1);
}

.desc {
    font-family: 'Roboto';
    font-size: 12px;
    height: 50px;
    width: 300px;
    padding: 10px;
    border-radius: 4px;
    border: 2px solid white;
}

.contact-us-form button {
    height: 40px;
    font-family: roboto;
    font-size: 15px;
    cursor: pointer;
    border-radius: 4px;
    border: 1px solid white;
    background-color: black;
    color: white;
    padding: 3px;
    transition: all 0.3s ease;
    background: linear-gradient(90deg, #03a9f4, #f441a5, #03a9f4);
    background-size: 400%;
}

.contact-us-form button:hover {
    background-color: white;
    color: white;
    animation: animate-background 10s linear infinite;
}

@keyframes animate-background {
    0% {
        background-position: 0%;
    }
    100% {
        background-position: 400%;
    }
}

.thank-you-box {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    align-items: center;
    justify-content: center;
}

.submit-thank-you {
    font-size: 18px;
    background: linear-gradient(90deg, #03a9f4, #f441a5, #ffeb3b, #03a9f4);
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    text-align: center;
    transition: all 0.3s ease;
    animation: animatedText 3s infinite alternate-reverse;
}

@keyframes animatedText{
    to{
      background-position: 100%; 
    }
  }

.submit-thank-you-sub {
    font-size: 12px;
    font-weight: 400;
}

.privacy-disclaimer {
    font-size: 10px;
    margin: 0px 0 0 0;
    text-align: center;
    flex: 1;
}

.privacy-disclaimer a {
    color: white;
    text-decoration: none;
}

.privacy-disclaimer a:hover {
    opacity: 0.7;
}

/* Media query for screens smaller than 415px */
@media only screen and (max-width: 415px) {
    .contact-us-container {
        min-width: 200px;
        padding: 20px;
        margin: 0px 0 40px 0;
    }
    .field-info {
        max-width: 244px;
    }
    .contact-us-form input[type=text] {
        width: 230px;
        font-size: 12px;
    }
    .desc {
        width: 230px;
        padding: 5px;
    }
    .contact-us-form button {
        height: 40px;
        width: 244px;
    }
}

/* HTML: <div class="loader"></div> */
.loader-container {
    display: flex;
    align-items: center;
    justify-content: center;
}
.loader {
    width: 30px;
    /* height: 40px; */
    padding: 8px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(0, 255, 251, 1);
    /* background: linear-gradient(90deg, #02fffb, #ff0090);
    background-size: 100%; */
    --_m: 
      conic-gradient(#0000 10%,#000),
      linear-gradient(#000 0 0) content-box;
    -webkit-mask: var(--_m);
            mask: var(--_m);
    -webkit-mask-composite: source-out;
            mask-composite: subtract;
    animation: l3 1s infinite linear;
}
@keyframes l3 {to{transform: rotate(1turn)}}

/* touchscreens */
@media (pointer: coarse) {
    .contact-us-form button {
        margin-bottom: 10px;
    }
}