/* MSP Auth - Styles */

body.msp-auth-page {
    background-color: #ffffff;
}

/* Form Styling */
#mspLoginForm input,
#mspRegisterForm input {
    border: 1px solid #d1d5db;
    padding: 0.75rem;
    border-radius: 0.5rem;
    width: 100%;
    font-size: 1rem;
}

#mspLoginForm input:focus,
#mspRegisterForm input:focus {
    outline: none;
    border-color: #1d4ed8;
    box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.1);
}

/* Button Styling */
#mspLoginForm button[type="submit"],
#mspRegisterForm button[type="submit"] {
    width: 100%;
    background-color: #1d4ed8;
    color: white;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s;
}

#mspLoginForm button[type="submit"]:hover,
#mspRegisterForm button[type="submit"]:hover {
    background-color: #1e3a8a;
}

#mspLoginForm button[type="submit"]:disabled,
#mspRegisterForm button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Message Box */
#loginMessage,
#registerMessage {
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
}

/* Links */
a.text-blue-700 {
    color: #1d4ed8;
    font-weight: 600;
}

a.text-blue-700:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 640px) {
    .min-h-screen {
        padding: 1rem;
    }
}
