body {
    background: #f9fbff;
}

.login-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.login-title {
    font-weight: 600;
    font-size: 20px;
    text-align: center;
}

.form-control {
    border-radius: 6px;
    padding: 10px;
    font-size: 14px;
}

.form-control:focus {
    box-shadow: none;
    border-color: #4a90e2;
}

label.form-label {
    font-size: 13px;
    color: #6c757d;
}

.divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.divider span {
    background: #fff;
    padding: 0 10px;
    position: relative;
    z-index: 1;
    color: #6c757d;
    font-size: 13px;
}

.divider:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e0e0e0;
    z-index: 0;
}

.ms-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #d6d6d6;
    background: #fff;
    transition: all 0.2s ease;
}

.ms-btn:hover {
    background: #f8f9fa;
}

.loader {
    width: 16px;
    height: 16px;
    border: 2px solid #ccc;
    border-top: 2px solid #000;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}