.container {
    background-color: #fff;
    padding: 30px;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 1000px; /* Adjusted for image and form */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sign-up-container {
    display: flex;
    width: 100%;
    gap: 20px; /* Adds spacing between image and form */
}

.image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.signup-image {
    width: 100%;
    max-height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.form-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Label styling */
label {
    font-size: 16px; /* Larger font size for better readability */
    font-weight: 600; /* Slightly bold */
    color: #333; /* Dark color for clarity */
    display: block;
    margin-bottom: 6px;
}

/* Input field styling */
input {
    width: 100%;
    padding: 3px; /* Slightly bigger padding for better UX */
    font-size: 16px; /* Increased input text size */
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    outline: none; /* Remove default outline */
    transition: border-color 0.3s ease;
}

h1 {
    margin-top: 8px;
	margin-bottom: 8px;
    font-weight: 700;
    color: #1E6CAE;
	font-size: 24px;
}

.login-options {
    margin-bottom: 8px;
}

.google-btn {
    background-color: #1E6CAE;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.submit-btn {
    background-color: #1E6CAE;
	color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.google-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.or-divider {
    margin: 8px 0;
    display: flex;
    align-items: center;
}

.or-divider span {
    margin: 0 10px;
}

.or-divider::before,
.or-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: #ccc;
}

.form-group {
    margin-bottom: 16px;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 5px;
}

input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

.forgot-password {
    margin-top: 4px;
    background-color: #f5f5f5; /* Light background color */
    padding: 10px;
    border-radius: 5px;
	font-size: 16px;
    color: #000; /* Black text for "Already have an account?" */
    text-align: left; /* Align text to the left */
    width: 100%; /* Full width */
    box-sizing: border-box;
}

.forgot-password a {
    text-decoration: none;
}

.forgot-password a:hover {
    text-decoration: underline;
}

.general-error-heading {
    color: red;
    font-size: 16px;
}

.forgot-password-highlight {
    font-size: 16px;
    font-weight: 600;
    text-decoration: underline;
    color: #1E6CAE;
    cursor: pointer;
}

.forgot-password-highlight:hover {
    text-decoration: none;
    color: #0056b3;
}

/* ✅ Standard Laptops (max-width: 1280px) */
@media (min-width: 1920px) {
    .container {
        max-width: 1200px;
        padding: 20px;
    }
    
    h1 {
        font-size: 26px;
    }

    .general-error-heading {
      font-size: 18px;
    }

    .google-icon {
        width: 24px;
        height: 24px;
        margin-right: 12px;
    }

     /* Reduce Label Font Size */
     label {
        font-size: 20px; /* Slightly smaller for better fit */
    }

    /* Reduce Input Field Size */
    input {
        font-size: 20px;
        padding: 16px; /* Adjust padding for compact input fields */
    }
    
    .forgot-password {
        font-size: 18px;
    }

    .forgot-password-highlight {
        font-size: 18px;
    }

    .google-btn, .submit-btn {
        padding: 12px;
        font-size: 20px;
    }

    .submit-btn {
        font-size: 20px;
        padding: 12px;
    }

}

/* ✅ Standard Laptops (max-width: 1280px) */
@media (max-width: 1280px) {
    .container {
        max-width: 1000px;
        padding: 20px;
    }

    h1 {
        font-size: 22px;
    }

    .general-error-heading {
      font-size: 15px;
    }


     /* Reduce Label Font Size */
     label {
        font-size: 16px; /* Slightly smaller for better fit */
    }

    .google-icon {
        width: 18px;
        height: 18px;
        margin-right: 8px;
    }

    /* Reduce Input Field Size */
    input {
        font-size: 16px;
        padding: 12px; /* Adjust padding for compact input fields */
    }
    .forgot-password {
        font-size: 15px;
    }

    .forgot-password-highlight {
        font-size: 15px;
    }

    .submit-btn {
        font-size: 16px;
        padding: 10px;
    }
}

/* ✅ Small Laptops (max-width: 1024px) */
@media (max-width: 1024px) {
    .container {
        max-width: 850px;
        padding: 20px;
    }

    h1 {
        font-size: 20px;
    }

    .general-error-heading {
      font-size: 14px;
    }

    /* Reduce Label Font Size */
    label {
        font-size: 15px; /* Slightly smaller for better fit */
    }

    .google-icon {
        width: 16px;
        height: 16px;
        margin-right: 6px;
    }

    /* Reduce Input Field Size */
    input {
        font-size: 15px;
        padding: 10px; /* Adjust padding for compact input fields */
    }

    .forgot-password {
        font-size: 14px;
    }

    .forgot-password-highlight {
        font-size: 14px;
    }

    .submit-btn {
        font-size: 15px;
        padding: 9px;
    }
}