@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap');

body {
    margin: 0;
    font-family: "JetBrains Mono", monospace;
    background-color: white;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: url('../img/background.jpg') no-repeat center center;
    background-size: cover;
}

a {
    color: #ffd200;
    /* text-decoration: none;  */
}

a:visited {
    color: #ffd200;
}

.titleDiv {
    margin-bottom: 2rem;
}

.container {
    display: flex;
    flex: 1;
    gap: 40px;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 15px 0;
    text-align: justify;
}

.blueStrip {
    background-color: #51d7e2;
    height: 300px;
    width: 100%;
    position: absolute;
    top: 30%;
    left: 0;
    z-index: -10000;
    display: none;
}

.left {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.left img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

.right h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffd200;
    margin: 0 0 10px;
    line-height: 1.2;
    font-family: "Barlow", sans-serif;
}

.right .subtitle {
    font-size: 1.2rem;
    margin: 0 0 20px;
    color: black;
}

.form-placeholder {
    background: black;
    width: 100%;
    height: 250px;
    right: 0px;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 40px;
    background: white;
    gap: 5rem;
}

footer img {
    max-height: 120px;
    margin-right: 15px;
}

.logos {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.logoTitle {
    color: gray;
    font-style: bold;
    /* font-size: 0.7em; */
    margin-right: 30px;
}


.form-container {
    display: flex;
    justify-content: center;
    background: black;
    padding: 20px 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    /* width: 100%; */
    align-items: center;
}

.form-container form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 80%;
    align-items: flex-start;
}

.form-container label {
    /* font-weight: bold; */
    margin-bottom: 5px;
    /* font-size: 0.95rem; */
}

.form-container input[type="text"],
.form-container input[type="email"] {
    padding: 10px 12px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    width: 100%;
    background-color: #ffd200;
}

.form-question {
    margin: 10px 0 5px;
    /* font-weight: bold; */
}

.radio-group {
    display: flex;
    gap: 20px;
    /* font-size: 0.95rem; */
}

.radio-group input[type="radio"] {
    margin-right: 6px;
}



.btn {
    background: #ffd200;
    border: none;
    padding: 12px;
    font-size: 1rem;
    font-weight: bold;
    color: black;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 50%;
    margin: auto;
    font-family: "JetBrains Mono", monospace;
}

.btn:hover {
    background: #e6bc00;
}


.error-message {
    color: red;
    font-size: 12px;
    margin-top: 2px;
    display: block;
}


@media (max-width: 1550px) {
    .btn {
        width: 75%;
    }


    footer img {
        max-height: 85px;
    }

    .titleDiv {
        margin-bottom: 1rem;
    }
}

@media (max-width: 1160px) {
    body {
        background: none;
    }

    .blueStrip {
        display: block;
    }

    .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }


    .right {
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    .form-container {
        justify-content: center;
        align-items: center;
        width: 80vw;
        background: black;
    }

    .form-container form {
        width: 90%;
        align-items: flex-start;
    }

    .btn {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .blueStrip {
        top: 0;
    }
}