/* Shared Authentication Page Styles */
/* Used by: Login, LoginWith2FA, and other auth pages */

:root {
    --primary-color: #5D5DF2;
    --primary01: rgba(93, 93, 242, 0.1);
    --primary03: rgba(93, 93, 242, 0.3);
    --primary08: rgba(93, 93, 242, 0.8);
}

body {
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    min-height: 100vh;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.content-area {
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    background-image: url('/assets/images/sample/background_signin.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.signin-container {
    min-height: 100vh;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.signin-right {
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    padding: 2.5rem;
    max-width: 500px;
    width: 100%;
}

.signin-header {
    text-align: center;
    margin-bottom: 2rem;
}

.signin-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.signin-subtitle {
    color: #f0f0f0;
    font-size: 0.95rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.alert {
    background-color: rgba(255, 200, 200, 0.9);
    border: 1px solid rgba(255, 99, 71, 0.5);
    color: #2c3e50;
}

.text-danger {
    color: #ff4444 !important;
    font-weight: 500;
}

.form-label {
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0.5rem;
    display: block;
}

.form-control {
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    background-color: rgba(255, 255, 255, 0.9);
    width: 100%;
    color: #2c3e50;
}

.form-control:focus {
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
    outline: none;
    background-color: rgba(255, 255, 255, 1);
}

.btn-signin {
    background: #000;
    border: none;
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    width: 100%;
    transition: all 0.2s ease;
    cursor: pointer;
    margin-top: 1rem;
}

.btn-signin:hover:not(:disabled) {
    background: #461E64;
    box-shadow: 0 4px 12px rgba(70, 30, 100, 0.3);
}

.btn-signin:disabled {
    background: #2b2e30;
    cursor: not-allowed;
}

.alert-danger.validation-summary-errors ul {
    padding-left: 15px !important;
    margin-bottom: 0 !important;
}
