/* Rukayyel Login Page Styles */
.login-page-wrapper {
    background-color: #f5f5f5;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-container {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 48px;
    max-width: 480px;
    width: 100%;
}

.login-logo {
    font-size: 48px;
    font-weight: 300;
    color: #999;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.login-logo-image {
    text-align: center;
    margin: 0 auto 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.login-logo-image img {
    max-width: 250px;
    max-height: 80px;
    width: auto;
    height: auto;
    margin: 0 auto 10px;
    display: block;
    object-fit: contain;
}

.login-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.login-subtitle {
    color: #666;
    font-size: 14px;
    margin-bottom: 32px;
}

.login-form .form-control {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 12px 16px;
    font-size: 14px;
    margin-bottom: 16px;
    width: 100%;
    box-sizing: border-box;
}

.login-form .form-control:focus {
    border-color: #5e35ff;
    box-shadow: 0 0 0 0.2rem rgba(94, 53, 255, 0.15);
    outline: none;
}

.btn-continue {
    background-color: #f5f5f5;
    color: #999;
    border: none;
    padding: 14px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 6px;
    width: 100%;
    cursor: not-allowed;
    transition: all 0.2s;
}

.btn-continue:not(:disabled) {
    background-color: #5e35ff;
    color: white;
    cursor: pointer;
}

.btn-continue:not(:disabled):hover {
    background-color: #4d28e6;
}

.login-footer-links {
    text-align: center;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid #e0e0e0;
}

.login-footer-links a {
    color: #5e35ff;
    text-decoration: none;
    font-size: 14px;
    margin: 0 12px;
}

.login-footer-links a:hover {
    text-decoration: underline;
}

.login-alert {
    margin-bottom: 24px;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
}

.login-alert.alert-danger {
    background-color: #fee;
    border: 1px solid #fcc;
    color: #c33;
}

.login-alert.alert-success {
    background-color: #efe;
    border: 1px solid #cfc;
    color: #3c3;
}

/* Responsive */
@media (max-width: 600px) {
    .login-container {
        padding: 32px 24px;
    }
    
    .login-logo {
        font-size: 36px;
        margin-bottom: 32px;
    }
    
    .login-title {
        font-size: 20px;
    }
}

