/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Assistant', sans-serif;
    background-color: #e0f7fa;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    width: 80%;
    max-width: 1920px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image-section {
    width: 100%;
    position: relative;
    overflow: hidden; 
}

.image-section img {
    width: 100%;
    height: 60vh; 
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.overlay h1 {
    font: normal normal bold 86px/113px Assistant;
    letter-spacing: 0px;
    color: #D3E10E;
    margin-bottom: 20px;
    max-width: 80%;
}

.overlay p {
    font: normal normal normal 20px/26px Assistant;
    letter-spacing: 0px;
    color: #F9F9F9;
    max-width: 80%;
}

.form-section {
    width: 100%;
    padding: 40px 20px;
    background: #f7f7f7;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-group {
    width: 100%;
}

.form-control {
    display: flex;
    flex-direction: column;
    margin: 10px 0;
    width: 100%;
    position: relative;
}

.form-control label {
    margin-bottom: 5px;
}

.form-control input[type="text"],
.form-control input[type="email"] {
    width: 100%;
    height: 50px;
    border: 1px solid #ccc;
    border-radius: 0;
    font-size: 1em;
    padding: 12px;
    background: #F6F6F6;
    position: relative;
}

.underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #D3E10E;
    opacity: 1;
}

.form-control-submit {
    width: 100%;
    margin: 10px 0;
    height: 50px;
    background-color: #D3E10E;
    border-radius: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font: normal normal bold 22px/30px Assistant;
    letter-spacing: 0.33px;
    color: #011560;
}

.form-control-submit input[type="submit"] {
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: none;
    cursor: pointer;
    font: inherit;
    color: inherit;
}

@media (max-width: 768px) {
    .image-section img {
        height: 80vh;
    }

    .overlay h1 {
        font-size: 30px;
        line-height: 1.2;
    }

    .overlay p {
        font-size: 14px;
    }

    .form {
        width: 80%;
    }
} */

/**********************************************************************************************************************************************************/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Assistant', sans-serif;
    background-color: #e0f7fa;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    width: 80%;
    max-width: 1920px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
}

.image-section {
    width: 100%;
    height: 60%;
    position: relative;
}

.image-section img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.overlay h1 {
    font: normal normal bold 66px/70px Assistant;
    letter-spacing: 0px;
    color: #D3E10E;
    margin-bottom: 20px;
}

.overlay p {
    font: normal normal normal 14px/26px Assistant;
    letter-spacing: 0px;
    color: #F9F9F9;
}

.form-section {
    width: 100%;
    padding: 40px 20px;
    background: #f7f7f7;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-group {
    display: flex;
    align-items: flex-end; 
}

.form-control {
    display: flex;
    flex-direction: column;
    margin: 0 10px;
    width: 200px; 
    position: relative;
}

.form-control label {
    margin-bottom: 5px;
}

.form-control input[type="text"],
.form-control input[type="email"] {
    width: 100%;
    height: 50px; 
    border: 1px solid #ccc;
    border-radius: 0; 
    font-size: 1em;
    padding: 12px;
    background: #F6F6F6;
    position: relative;
}

.underline {
    position: absolute;
    bottom: 0; 
    left: 0;
    width: 100%;
    height: 4px;
    background: #D3E10E;
    opacity: 1;
}

.form-control-submit {
    margin-left: 10px;
    width: 100px;
    height: 50px;
    background-color: #D3E10E;
    border-radius: 0; 
    display: flex;
    justify-content: center;
    align-items: center;
    font: normal normal bold 22px/30px Assistant;
    letter-spacing: 0.33px;
    color: #011560;
}

.form-control-submit input[type="submit"] {
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: none;
    cursor: pointer;
    font: inherit;
    color: inherit;
}

@media (max-width: 768px) {
    
        .image-section img {
            height: 70vh;
        }
    
    .overlay h1 {
        font-size: 40px;
        line-height: 60px;
    }

    .overlay p {
        font-size: 14px;
        line-height: 10px;
        position: absolute;
        top: 60%;
        left: 20%;
        right: 20%;
        bottom: 20%;
    }

    .form-group {
        flex-direction: column;
        align-items: stretch;
    }

    .form-control {
        width: 100%;
        margin: 10px 0;
    }

    .form-control label {
        margin-bottom: 10px;
    }

    .form-control input[type="text"],
    .form-control input[type="email"] {
        height: 40px;
        font-size: 0.9em;
    }

    .form-control-submit {
        width: 100%;
        height: 40px;
        margin-top: 10px;
    }

    .form-control-submit input[type="submit"] {
        font-size: 18px;
    }
}