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

html,
body {
    height: 100%;
    font-family: 'Inter';
    background-color: #F2F6FF;
}

/* Navbar (Logo Section) */
.navbar-left {
    display: flex;
    align-items: center;
    background-color: #FFFFFF;
    gap: 35px;
    width: 100%;
    z-index: 10;
    position: sticky;
    top: 0;
    padding: 17px;
}

.logo {
    max-width: 120px;
    max-height: 70px;
    width: auto;
    height: auto;
    margin-left: 10px;
}

/* Split Layout */
.container {
    display: flex;
    height: 100vh;
}

/* Left Section: Navbar and Form */
.left-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 50%;
    padding: 0px;
    overflow: scroll;
}

.left-section::-webkit-scrollbar {
    display: none;
    /* For Chrome, Safari, and Opera */
}

.form-container {
    padding: 40px;
    width: 100%;
    margin-top: 40px;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.3s ease-in-out;
    /* Smooth transition for scale */
}

h1 {
    font-size: 2.5rem;
    color: #181C32;
    margin-bottom: 20px;
    font-weight: 600;
}

p {
    color: #A1A5B7;
    margin-bottom: 40px;
}

.symbol {
    color: #A1A5B7;
}

/* Add space below each label */
label {
    margin-bottom: 10px;
    display: block;
    /* Ensures the label is a block element */
}

/* To also add space for the error message */
.input-group {
    margin-bottom: 20px;
    /* Adjust the space between each input group */
}

/* Input Style */
.custom-input {
    width: 100%;
    padding: 12px;
    border-radius: 25px;
    border: 1px solid #a1a5b74b;
    font-size: 16px;
}

/* Password Input Styles */
.password-input {
    position: relative;
    width: 100%;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 12px;
    cursor: pointer;
    font-size: 1.2rem;
    color: #A1A5B7;
}

/* Error Message Styles */
.error-message {
    color: red;
    font-size: 0.9rem;
    margin-top: 10px;
    margin-bottom: 10px;
}

/* Button Styles */
.custom-login-btn {
    background-color: #FFE1D4;
    color: #ea5d207e;
    border: none;
    padding: 15px;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.custom-login-btn:hover {
    background-color: #f2a97f;
}

/* Signup Link Styles */
.custom-signup {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #A1A5B7;
}

.signup-link {
    color: #EA5E20;
    text-decoration: none;
    margin-left: 5px;
}

/* Right Section: Image */
.right-section {
    flex: 1;
    position: relative;
    height: 100%;
    /* Make sure it takes the full height */
    overflow: hidden;
    /* Prevent scrolling on the right section */
}

.img-overlay {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Password Requirement Styles */
.requirement-list {
    margin-top: 15px;
}

.requirement-list table {
    width: 100%;
    border-collapse: collapse;
}

.requirement-list td {
    padding: 8px;
    color: #333;
    text-align: center;
    /* Center-align the table cell content */
}


.requirement-item div {
    display: flex;
    align-items: center;
    /* Align items vertically centered */
    /* Center-align items horizontally */
}

.requirement-list i {
    font-size: 0.8rem;
    transition: color 0.3s ease;
    margin-right: 5px;
    /* Add spacing between icon and text */
}

.requirement-list span {
    font-size: 0.9rem;
}

/* Active Requirement Colors */
.green {
    color: green !important;
}

#icon-lowercase,
#icon-uppercase,
#icon-special,
#icon-numbers {
    font-size: 0.8rem;
    color: rgb(0, 0, 0);
}

input::placeholder {
    color: #a1a5b7;
    /* Change this to your desired color */
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .left-section {
        width: 100%;
    }

    .right-section {
        display: none;
    }

    label {
        font-size: 14px;
    }

    .custom-login-btn {
        padding: 10px;
    }

    .custom-signup {
        font-size: 14px;
    }

    .custom-input {
        font-size: 14px;
    }

    .error-message {
        font-size: 0.8rem;
    }

    .form-container {
        max-width: 100%;
        margin-top: 20px;
        padding: 20px;
    }

    .navbar-left {
        padding: 10px;
    }

    .custom-signup {
        justify-content: center;
        align-items: center;
    }

    h1 {
        font-size: 28px;
        margin-bottom: 3px;
    }

    p {

        font-size: 14px;
        margin-bottom: 16px;

    }

    .requirement-content span {
        font-size: 14px;
    }

    #icon-lowercase,
    #icon-uppercase,
    #icon-special,
    #icon-numbers {
        font-size: 0.6rem;
        transform: translateY(-8%);
    }

    .logo {
        width: 80%;
        height: 40px;
        margin-left: 8px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 28px;
        margin-bottom: 3px;
    }

    p {

        font-size: 14px;
        margin-bottom: 16px;

    }

    .navbar-left {
        margin-bottom: -20px;
    }


    label {
        font-size: 14px;
    }

    .custom-login-btn {
        padding: 10px;
    }

    .custom-signup {
        font-size: 14px;
    }

    .custom-input {
        font-size: 14px;
    }

    .error-message {
        font-size: 0.8rem;
    }

    .logo {
        width: 80%;
        height: 40px;
        margin-left: 8px;
    }

    .requirement-content span {
        font-size: 14px;
    }


    .requirement-text {
        flex-direction: column;
    }

    #icon-lowercase,
    #icon-uppercase,
    #icon-special,
    #icon-numbers {
        font-size: 0.6rem;
    }
}

@media (min-width: 769px) and (max-width: 1919px) {
    h1 {
        font-size: 28px;
        /* Significantly increase the font size for the main heading */
        margin-top: -35px;
        margin-bottom: 3px;
    }

    p {
        font-size: 14px;
        /* Increase paragraph font size */
        margin-bottom: 15px;
    }

    label {
        font-size: 14px;
    }

    .custom-login-btn {
        padding: 10px;
    }

    .custom-signup {
        font-size: 14px;
    }

    .custom-input {
        font-size: 14px;
    }

    .error-message {
        font-size: 0.8rem;
    }

    .logo {
        width: 80%;
        height: 40px;
        margin-left: 20px;
    }

    .requirement-content span {
        font-size: 14px;
    }

    #icon-lowercase,
    #icon-uppercase,
    #icon-special,
    #icon-numbers {
        font-size: 0.7rem;
        transform: translateY(-8%);
    }

    .custom-input::placeholder {
        /* Increase the font size of the placeholder text */
        padding-left: 5px;
        /* Adjust this value to move the placeholder right */
    }

    .password-toggle {
        transform: translateY(-7%);
    }
}

/* Media Query for Very Large Screens (above 1920px) */
@media (min-width: 1920px) {
    h1 {
        font-size: 4rem;
        /* Significantly increase the font size for the main heading */
    }

    p {
        font-size: 1.6rem;
        /* Increase paragraph font size */
    }

    .custom-input {
        padding: 20px;
        /* Increase padding for input fields */
        font-size: 30px;
        /* Increase font size of input fields */
        border-radius: 40px;
        /* Make the input fields even more rounded */
    }

    /* Increase the size of the input placeholder */
    .custom-input::placeholder {
        font-size: 1.8rem;
        /* Increase the font size of the placeholder text */
        padding-left: 10px;
        /* Adjust this value to move the placeholder right */
        transform: translateY(5%);
    }

    .custom-login-btn {
        padding: 25px;
        /* Increase button padding */
        font-size: 24px;
        /* Increase button font size */
        border-radius: 40px;
        /* Make the button more rounded */
    }

    .error-message {
        font-size: 1.4rem;
        /* Increase error message font size */
    }

    .forgot-password,
    .signup-link,
    .custom-signup span,
    label {
        font-size: 2rem;
        /* Increase the font size of both links */
    }

    /* Increase the checkbox size and "Remember Me" label size */
    input[type="checkbox"] {
        transform: scale(1.5);
        /* Make the checkbox larger */
        margin-right: 10px;
        /* Add space between the checkbox and label */
    }

    /* Center-align "Remember Me" checkbox and label */
    .remember-me-container {
        display: flex;
        align-items: center;
        margin-top: 20px;
        /* Add space above the checkbox */
    }

    .navbar-left {
        padding: 30px 50px;
        /* Increase navbar padding */
        height: 160px;
    }

    .logo {
        max-width: 300px;
        max-height: 700px;
        /* Increase logo size */
        padding: 75px;
        padding-left: 0px;
    }

    .form-container {
        padding: 60px;
        /* Increase the padding around the form container */
    }

    .input-group {
        margin-bottom: 30px;
        /* Increase space between input groups */
    }

    .password-toggle {
        font-size: 2rem;
        /* Increase the size of the password toggle icon */
        transform: translateY(20%);
    }

    .custom-signup {
        margin-top: 30px;
        /* Increase the space above the sign-up section */
    }

    .requirement-list i {
        font-size: 2rem;
    }

    .requirement-list span {
        font-size: 2rem;
    }

    #icon-lowercase,
    #icon-uppercase,
    #icon-special,
    #icon-numbers {
        font-size: 1.2rem;
        transform: translateY(-8%);
    }
}