/* General Reset */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    color: #333;
    background-color: #f4f4f9;
    background-color: #e6f4f1;

}

a {
    text-decoration: none;
    color: #2ecc71;
    /* Green Highlight */
}

a:hover {
    text-decoration: underline;
}

/* Split Screen Layout */
.split-screen {
    display: flex;
    min-height: 95vh;
    flex-wrap: wrap;
    /* justify-content: start; */
    align-items: flex-start;
}

.left {
    flex: 1;
    background-color: #e6f4f1 !important;
    /* Blue Background */
    color: rgb(0, 0, 0);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    margin-top: 40vh;
}

.left .content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: left;
}

.left .content p {
    font-size: 1.1rem;
    margin-top: 1rem;
    text-align: left;
}

.logo {
    font-size: 5.5rem;
    font-weight: bold;
    color: #000000;
    text-align: left;
}

.logo .highlight {
    color: #00305d;
}

.highlight {
    font-weight: bold;
    color: #00305d;
    /* Yellow */
}

.privacy-policy {
    position: absolute;
    top: 10px;
    margin-top: 53rem;
    text-align: center;
    width: 100%;
    font-size: 0.9rem;
    color: #000000;
    background-color: #e6f4f1;
}

.privacy-policy a {
    color: #00305d;
    /* Green Highlight */
}

/* Right Section */
.right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background-color: #ffffff;
}

/* Form Container */
.form-container {
    max-width: 450px;
    width: 100%;
}

.form-container h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: left;
}

.form-container form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    font-weight: bold;
    color: #3498db;
    /* Blue Label Color */
}

.mandatory {
    color: red;
    font-size: 1.2rem;
}

/* Inputs */
input,
textarea,
select {
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 2px !important;
    resize: none;
}

textarea {
    height: 100px;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #2ecc71;
    /* Green Focus Border */
    box-shadow: 0 0 5px rgba(46, 204, 113, 0.5);
}

/* Button */
.btns {
    background-color: #3498db !important;
    color: white;
    font-size: 1.1rem !important;
    padding: 0.9rem !important;
    border: none;
    border-radius: 4px !important;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btns:hover {
    background-color: #2980b9;
    /* Darker Blue Hover Effect */
}

/* Additional Text */
.form-container p {
    font-size: 0.8rem;
    text-align: center;
    color: #000000;
    margin-top: 1rem;
}



/* Media Queries for Mobile & Tablet */

/* Mobile (up to 480px) */
@media (max-width: 480px) {
    .split-screen {
        flex-direction: column;
        /* Stacks sections */
    }

    .left {
        padding: 1.5rem;
    }
    .left .content{
        text-align: left;
    }
    .logo{
        text-align: left;
    }

    .right {
        padding: 1.5rem;
    }

    h1 {
        text-align: left;
    }

    .logo {
        font-size: 3rem;
        text-align: center;
    }

    .left .content h1 {
        font-size: 2.5rem;
    }

    .form-container {
        max-width: 100%;
    }

    .form-container h2 {
        font-size: 1.5rem;
    }

    .form-container form {
        gap: 2rem;
    }

    input,
    textarea {
        font-size: 0.95rem;
    }
}

/* Tablet (up to 768px) */
@media (max-width: 768px) {
    .body {
        height: 105vh;
    }

    .split-screen {
        flex-direction: column;
        min-height: 100vh;
        /* Stacks sections */
    }

    .left {
        padding: 2rem;
        height: fit-content;
        padding-top: 0px !important;
    }

    .right {
        padding: 2rem;
        height: fit-content;
    }

    .logo {
        font-size: 3.5rem;
        text-align: left;
    }

    .left .content h1 {
        font-size: 2.8rem;
        text-align: left;
    }
    .left .content{
        text-align: left;
    }

    .form-container h2 {
        font-size: 1.6rem;
    }

    .form-container form {
        gap: 1.1rem;
    }

    input,
    textarea {
        font-size: 1rem;
    }

    .privacy-policy {
        font-size: 0.85rem;
    }
}

/* content left side position sticky top-10 left -0 */
@media(min-width: 768px) {
    .left {
        position: sticky !important;
        top: 10px;
        left: -0;
        padding-left: 20px;
    }
}
