/* Auth Styles */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=General+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #e30614;
    --secondary-color: #242424;
    --text-color: #242424;
    --light-gray: #f5f5f5;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --error-color: #dc3545;
    --warning-color: #ffc107;
}

* {
    box-sizing: border-box;
}

body {
    font-family: "General Sans", sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Sora", sans-serif;
    font-weight: 600;
    margin: 0 0 1rem 0;
    color: var(--secondary-color);
}

.elp-auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    padding: 20px;
}

.elp-auth-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.elp-auth-header {
    margin-bottom: 30px;
}

.elp-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    margin-bottom: 20px;
}

.elp-logo-mus {
    font-family: "Sora", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.elp-logo-max {
    font-family: "Sora", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.elp-logo-reg {
    font-family: "Sora", sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: -8px;
}

.elp-auth-title {
    font-family: "Sora", sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0 0 30px 0;
    text-align: center;
}

.elp-auth-form {
    text-align: left;
}

.elp-form-group {
    margin-bottom: 20px;
}

.elp-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--secondary-color);
    font-size: 14px;
}

.elp-form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: "General Sans", sans-serif;
    transition: all 0.3s ease;
    background: #fff;
}

.elp-form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(227, 6, 20, 0.1);
}

.elp-password-input {
    position: relative;
    display: flex;
    align-items: center;
}

.elp-password-input input {
    padding-right: 50px;
}

.elp-password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.elp-password-toggle img {
    width: 20px;
    height: 20px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.elp-password-toggle:hover img {
    opacity: 1;
}

.elp-form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.elp-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-color);
}

.elp-checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 0;
}

.elp-forgot-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.elp-forgot-link:hover {
    color: #c40511;
}

.elp-btn {
    padding: 12px 24px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    font-family: "General Sans", sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.elp-btn-primary {
    background: var(--secondary-color);
    color: #fff;
}

.elp-btn-primary:hover {
    background: #1a1a1a;
    color: #fff;
}

.elp-btn-full {
    width: 100%;
}

.elp-auth-note {
    margin-top: 20px;
    text-align: center;
}

.elp-auth-note p {
    color: #7f8c8d;
    font-size: 14px;
    margin: 0;
    line-height: 1.4;
}

.elp-message {
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
}

.elp-message.elp-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.elp-message.elp-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Design */
@media (max-width: 480px) {
    .elp-auth-card {
        padding: 30px 20px;
    }
    
    .elp-logo-mus,
    .elp-logo-max {
        font-size: 28px;
    }
    
    .elp-auth-title {
        font-size: 20px;
    }
    
    .elp-form-options {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
} 