   @import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700&display=swap');

:root {
    --green: #27ae60;
    --black: #192a56;
    --light-color: #666;
    --box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .1);
    --section-padding: 50px;
    --shadow-1: 0px 4px 8px var(--black_10);
    --shadow-2: 0px 30px 10px -20px var(--smocky-black_30);
    --shadow-3: 0px 15px 10px -20px var(--smocky-black_30);

}

* {
    /* font-family: 'Nunito', sans-serif; */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
    border: none;
    transition: all .2s linear;
}

html {
    font-size: .8rem;
    overflow-x: hidden;
    scroll-padding-top: 5.5rem;
    scroll-behavior: smooth;
}

section {
    padding: 2rem 9%;
}

section:nth-child(even) {
    background: #eee;
}

body {
    margin: 0;
    padding: 0;
    background: #f7f9fb;
    font-family: Arial, sans-serif;
}

.container {
    display: flex;
    max-width: 950px;
    margin: 40px auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px #eee;
    overflow: hidden;
}

.form-section {
    flex: 1;
    padding: 25px 24px;
}

.form-section h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.form-section p {
    margin-bottom: 24px;
    color: #555;
    font-size: 1.4rem;
}

.form-section input {
    display: block;
    width: 94%;
    /* margin-bottom: 16px; */
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1.5rem;
}

select {
    display: block;
    width: 94%;
    /* margin-bottom: 16px; */
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1.5rem;
}

.form-group label {
    font-size: 1.6rem;
    margin-bottom: 24px;
    color: #555;

}

.form-section button {
    width: 94%;
    padding: 12px;
    background: #2979ff;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
}

.small-text {
    margin-top: 16px;
    font-size: 0.95rem;
    color: #888;
}

.link {
    color: #2979ff;
    cursor: pointer;
    text-decoration: underline;
}

.image-section {
    flex: 1;
    background: #f7f9fb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-section img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 12px;
}












/* for the size in phone */
@media (max-width: 600px) {
    .container {
        flex-direction: column;
        max-width: 100%;
    }

    .image-section {
        display: none;
    }

    .form-section {
        padding: 32px 16px;
    }

    .image-section img {
        max-width: 100%;
    }
}