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

.content-container {
    display: flex;
    width: 100%; /* Ensure full width */
    /* overflow:scroll; */
}


html, body {
    width: 100%;
    height: 100%;
    overflow: scroll; /* Prevent overall page scrolling */
}
.left-side {
    width: 60%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    
   
}
.center-image {
    /* max-width: 60%; Ensure the image doesn't overflow */
    /* max-height: 60%; Ensure the image doesn't overflow */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Remove extra space below the image */
}

.right-side {
    width: 40%;
    padding: 75px 50px;
    background-color: #f8f8f8;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
}

.right-side .center-image {
    width: 162.2px;
    height: 42px;
    object-fit: contain;
}

.welcome-text {
    margin-top: 10px; /* Add margin above the text */
    text-align: center; /* Center the text horizontally */
    font-family: "Manrope", sans-serif; /* Apply Manrope font */
    font-size: 48px; /* Set font size to 48px */
    font-weight: 700; /* Set font weight to 700 */
    color: #0a0a0a; /* Adjust text color as needed */
}
.email-input,
.password-input {
    width: 100%; /* Full width */
    height: 54px; /* Set height */
    padding: 16px 12px; /* Padding */
    font-size: 16px; /* Font size */
    border: 1px solid #e5e5e5; /* Border color */
    border-radius: 8px; /* Rounded corners */
    background: #ffffff; /* Background color */
    outline: none; /* Remove default focus outline */
    box-sizing: border-box; /* Ensure padding doesn't affect width */
}

.password-container {
    position: relative;
    width: 100%;
    margin-top: 5px; /* Add margin-top for spacing */
}

.password-container .password-input {
    width: 100%; /* Ensure full width */
    padding-right: 40px; /* Space for eye icon */
}

.eye-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
    color: #999;
}

.eye-icon:hover {
    color: #007db8; /* Change color on hover */
}

/* Remember Me Checkbox Positioned to the Left */
.remember-me {
    display: flex;
    justify-content: flex-start; /* Align to left */
    align-items: center;
    margin-top: 10px;
    font-size: 16px;
    color: #333;
    width: 100%; /* Full width */
}

.remember-me input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    margin-right: 8px; /* Space between checkbox and text */
}

.remember-me label {
    cursor: pointer;
}
.remember-me label {
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #525252;
}
.login-button {
    width: 100%;
    padding: 12px;
    background-color: #3b82f6; /* Change color as needed */
    color: white;
    font-size: 18px; /* Updated size */
    font-weight: 600; /* Semibold */
    font-family: "Plus Jakarta Sans", sans-serif; /* Updated font */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 30px;
}
.hr-with-button {
    position: relative;
    width: 100%;
    text-align: center;
    margin-top: 50px;
}

.hr-with-button hr {
    border: 1px solid #e5e5e5;
    margin: 0;
}

.google-signup-button {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    padding: 16px;
    border-radius: 5px;
    font-size: 16px; /* Updated font size */
    font-family: "Manrope", sans-serif; /* Added font family */
    font-weight: 400; /* Updated font weight */
    color: #525252; /* Updated text color */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px; /* Space between icon and text */
    text-decoration: none; /* Remove underline */
}

.google-signup-button:hover {
    background-color: #f1f1f1;
}

.google-icon {
    width: 32px; /* Adjust icon size as needed */
    height: 32px;
}

.signup-text {
    text-align: center;
    margin-top: 20px; /* Adjust margin as needed */
    font-family: "Manrope", sans-serif; /* Font family */
    font-weight: 400; /* Font weight */
    font-size: 16px; /* Font size */
    color: #525252; /* Color for "Don’t have an account?" */
    margin-top: 40px;
}

.signup-link {
    font-family: "Manrope", sans-serif; /* Font family */
    font-weight: 600; /* Font weight */
    font-size: 18px; /* Font size */
    color: #2563eb; /* Color for "Sign Up" */
    text-decoration: none; /* Remove underline */
}

.signup-link:hover {
    text-decoration: underline; /* Add underline on hover */
}
.error
{
    color: #B00020;
    font-size: 14px;
    margin-top: 5px;
}
.left-side .center-image {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Keep image fully visible */
    max-width: 100%;
    max-height: 100%;
}