body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    margin: 0;
    padding: 0;
}

.login-container {
    height: 100%;
    min-height: 100vh;
    display: flex;
    flex-wrap: wrap;
}

.login-image {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #f8f9fa;
    padding: 2rem;
    text-align: center;
}

.login-image img {
    max-width: 80%;
    max-height: 600px;
    margin-bottom: 1rem;
    border-radius: 8px;
}

.login-image h3 {
    font-size: 1.5rem;
    color: #333;
}

.login-form {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #e9ecef;
    padding: 2rem;
}

.login-form h2 {
    margin-bottom: 1rem;
    color: #495057;
}

.form-box {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

.btn-primary {
    width: 100%;
}

@media (max-width: 768px) {

    .login-image,
    .login-form {
        flex: 1 1 100%;
    }

    .login-image img {
        max-width: 60%;
    }
}


#resetPasswordModal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    padding: 20px;
    border-radius: 5px;
    width: 500px;
    text-align: center;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h5 {
    margin: 0;
}

#submitBtn:disabled {
    background-color: #ccc;
}
