/* Full-height layout */
.login-container {
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: center;
    background-color: #fdfdfd;
}

/* Left side - image section */
/* .login-left {
    flex: 1;
    background: url('/static/webapp/assets/sample_msy_summarized.jpg') no-repeat center center;
    background-size: cover;
    height: 90vh;
    border-radius: 10px;
    margin-left: 40px;
    box-shadow: 0px 10px 30px rgba(199, 199, 199, 0.1);
} */

/* Right side - login form */
.login-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

/* Card-style login box */
.login-box {
    /* background: #fff; */
    border: 1px solid #f6f5f4;
    background-color: #f6f5f4;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0px 10px 30px rgba(199, 197, 197, 0.1);
    width: 100%;
    max-width: 400px;
}
.login-box h2{
    font-size: 32px;
    font-weight: 700;
    color:#333;
    font-family:DM Serif Display, serif;
}
/* Input fields */
.form-control {
    border-radius: 25px;
    padding: 12px 15px;
    border: 1px solid #ddd;
}

/* Button styles */
.btn-login {
    width: 100%;
    border-radius: 25px;
    padding: 12px;
    font-weight: 600;
    /* background-color: #2246aa; */
    background-color: #000000;
    border: none;
}

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

/* Google login button */
.google-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f6f5f4;
    color: #000;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.google-login-btn img {
    margin-right: 8px;
    width: 20px;
}

.google-login-btn:hover {
    background-color: #e9ecef;
}

/* Centering text */
.text-center {
    text-align: center;
}

/* Responsive layout */
@media (max-width: 768px) {
    .login-left {
        display: none;
    }
    .login-right {
        flex: 1;
        width: 100%;
        padding: 20px;
    }
}
