/* Maestro LMS Student Login Form Styles */
.mstr-lms-login-container {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 900px;
    margin: 2rem auto;
}

.mstr-lms-login-left {
    flex: 1 1 300px;
    background-color: #f8f9fa;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid #e9ecef;
}

.mstr-lms-login-left h2 {
    margin-top: 0;
    color: #2c3e50;
    font-size: 1.8rem;
}

.mstr-lms-login-left p {
    color: #6c757d;
    line-height: 1.6;
}

.mstr-lms-login-right {
    flex: 2 1 400px;
    padding: 3rem;
}

.mstr-lms-login-error {
    background: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #dc3545;
}

.mstr-lms-login-error p {
    margin: 0;
}

.mstr-lms-form-row {
    margin-bottom: 1.5rem;
}

.mstr-lms-form-row label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #495057;
}

.mstr-lms-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.15s ease-in-out;
}

.mstr-lms-input:focus {
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.mstr-lms-remember-row label {
    font-weight: normal;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.mstr-lms-remember-row input[type="checkbox"] {
    margin-right: 0.5rem;
}

.mstr-lms-button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.15s ease-in-out;
    width: 100%;
}

.mstr-lms-button:hover {
    background-color: #0056b3;
}

@media (max-width: 768px) {
    .mstr-lms-login-container {
        flex-direction: column;
    }
    .mstr-lms-login-left {
        border-right: none;
        border-bottom: 1px solid #e9ecef;
        padding: 2rem;
    }
    .mstr-lms-login-right {
        padding: 2rem;
    }
}
