body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.main-container {
    display: flex;
    height: 100vh;
    gap: 10px
    
}
.container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
}
/* google button design */


/* Input field email and pass */
.input-group {
    display: flex;
    flex-direction: column;

}

.signin-label {
    text-align: left;
    margin: 10px 0;
}

input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 10px;
}

/* checkbox and forgetpassword */
.checkbox-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: small;
}

.signIn-btn {
    background-color: #083404;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    width: 100%;
    margin: 10px 0 10px 0;
}

.inform {
    font-size: small;
}

.signUp-btn {
    background-color: #083404;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    width: 90%;
    margin: 10px 0 10px 0;
}

/* strong password notif */
.error {
    color: red;
    font-size: small;
    display: none;
}

p.must-text {
    font-size: small;
    margin: 0;
    
}

/* sign up name */

.department {
    width: 191px;
    height: 37px;
    outline: none;
    border-color: #ccc;
    border-radius: 3px;
}

/* passrequirement */
p.pass-requirement {
    font-size: 12px;
    margin: 0;
    text-align: left;
    margin-left: 20px;
}

div.pass-requirements-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* error message in logging in */
.error-message {
    background-color: #f8d7da;  /* Light red background */
    color: #721c24;             /* Dark red text */
    border: 1px solid #f5c6cb;  /* Light red border */
    padding: 10px;
    margin-top: 8px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-size: 12px;
    text-align: center;
}

.signbtn-container{
    margin-bottom: 10px;
}

/* New layout for sign-in page */



/* Left green branding panel */
.left-panel {
    flex: 1;
    background-color: #083404;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
    font-size: 22px;
    line-height: 1.5;
    width: 100%;
    margin-right: auto;
}

/* Right panel for sign-in form */
.right-panel {
   
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

/* Sign-in form container */
.signin-box {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    width: 350px;
}

/* Subtitle text below sign-in title */
.login-subtitle {
    font-size: 14px;
    color: #555;
    text-align: center;
    margin-bottom: 15px;
}
