/* public/css/login.css */

/* This body style is specific to the login/register pages to center content */
body {
    background-color: #5A3E9C !important; /* Ensure purple background */
    font-family: 'Poppins', sans-serif !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    height: 100vh !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow-y: auto !important;
    color: #333 !important; /* Default text color for login box */
}

.login-box {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    width: 100%;
    max-width: 800px; /* Optional: Limit the width */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
    margin: 0 auto; /* Center it and remove the top/bottom margins */
    margin-top: 20px; /* Add a bit of top margin if needed on shorter screens */
}

.login-box h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}

.form-group label {
    font-weight: 600;
}

.form-control {
    border-radius: 5px;
    padding: 10px;
    font-size: 16px;
    width: 100%;
    margin-bottom: 15px;
    height: auto !important;
    min-height: 38px !important;
    line-height: 1.5 !important;
    box-sizing: border-box !important;
    overflow: visible !important;
}

.btn-primary {
    background-color: #5A3E9C;
    border-color: #5A3E9C;
    color: #ffffff;
    width: 100%;
    padding: 10px;
    border-radius: 5px;
}

.btn-primary:hover {
    background-color: #4e3592;
    border-color: #4e3592;
}

.text-center {
    text-align: center;
}

.text-center a {
    color: #5A3E9C;
    font-weight: 600;
    text-decoration: none;
}

.text-center a:hover {
    text-decoration: underline;
}
