/* Auth Pages Styles - Bejelentkezés és Regisztráció */

/* A FLOW hivatalos színei */
:root {
    --flow-dark-blue: #1a2b4a;
    --flow-darker-blue: #0f1e35;
    --flow-gold: #FFD700;
    --flow-gold-dark: #d4af37;
}

body.flow-auth-page {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    font-family: var(--primary-font);
}

.flow-auth-container {
    display: flex;
    width: 100%;
    max-width: 1000px;
    min-height: 600px;
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.flow-auth-left {
    flex: 0 0 45%;
    background: linear-gradient(111deg, var(--flow-dark-blue) 19.42%, var(--flow-darker-blue) 73.08%);
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: relative;
}

.flow-auth-logo {
    margin-bottom: 40px;
    text-align: center;
}

.flow-auth-logo img {
    max-height: 80px;
    width: auto;
    margin-bottom: 10px;
}

.flow-auth-logo-text {
    font-size: 32px;
    font-weight: 700;
    color: var(--flow-gold);
    margin-bottom: 5px;
}

.flow-auth-logo-tagline {
    font-size: 14px;
    opacity: 0.9;
    color: #fff;
}

.flow-auth-welcome {
    text-align: center;
}

.flow-auth-welcome h2 {
    font-size: 26px;
    font-weight: 300;
    margin-bottom: 0;
    color: #fff;
    white-space: nowrap;
}

.flow-auth-welcome .highlight {
    color: var(--flow-gold);
}

.flow-auth-social {
    position: absolute;
    bottom: 60px;
    display: flex;
    gap: 15px;
}

.flow-auth-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.flow-auth-social a:hover {
    background: var(--flow-gold);
    color: var(--flow-dark-blue);
    transform: translateY(-2px);
}

.flow-auth-bottom-links {
    position: absolute;
    bottom: 20px;
    left: 50px;
    right: 50px;
    font-size: 12px;
    text-align: center;
}

.flow-auth-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.flow-auth-bottom-links a:hover {
    color: var(--flow-gold);
}

.flow-auth-right {
    flex: 1;
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

.flow-auth-form-container {
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
}

.flow-auth-form-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
}

.flow-form-group {
    margin-bottom: 18px;
}

.flow-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.flow-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #495057;
    margin-bottom: 5px;
}

.flow-form-group input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fff;
}

.flow-form-group input:focus {
    outline: none;
    border-color: var(--flow-gold-dark);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.flow-form-help {
    display: block;
    font-size: 12px;
    color: #6c757d;
    margin-top: 4px;
}

.flow-form-remember {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 14px;
}

.flow-form-remember label {
    display: flex;
    align-items: center;
    color: #666;
    cursor: pointer;
}

.flow-form-remember input[type="checkbox"] {
    margin-right: 8px;
}

.flow-forgot-password {
    font-size: 14px;
    color: var(--flow-dark-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.flow-forgot-password:hover {
    color: var(--flow-gold-dark);
    text-decoration: underline;
}

.flow-form-checkbox {
    margin-bottom: 20px;
}

.flow-form-checkbox label {
    display: flex;
    align-items: flex-start;
    font-size: 14px;
    color: #495057;
    cursor: pointer;
}

.flow-form-checkbox input[type="checkbox"] {
    margin-right: 8px;
    margin-top: 3px;
}

.flow-form-checkbox a {
    color: var(--flow-dark-blue);
    text-decoration: none;
    font-weight: 500;
}

.flow-form-checkbox a:hover {
    color: var(--flow-gold-dark);
    text-decoration: underline;
}

.flow-submit-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--flow-dark-blue) 0%, var(--flow-darker-blue) 100%);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.flow-submit-btn:hover {
    background: linear-gradient(135deg, var(--flow-gold) 0%, var(--flow-gold-dark) 100%);
    color: var(--flow-dark-blue);
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.flow-auth-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

.flow-auth-footer a {
    color: var(--flow-dark-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.flow-auth-footer a:hover {
    color: var(--flow-gold-dark);
    text-decoration: underline;
}

.flow-error-message {
    background: #fee;
    color: #c33;
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}

.flow-error-message ul {
    margin: 0;
    padding-left: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .flow-auth-container {
        flex-direction: column;
        max-width: 400px;
    }
    
    .flow-auth-left {
        padding: 40px;
        min-height: 250px;
    }
    
    .flow-auth-right {
        padding: 30px;
    }
    
    .flow-auth-social {
        position: static;
        margin-top: 30px;
    }
    
    .flow-auth-bottom-links {
        position: static;
        margin-top: 20px;
    }
    
    .flow-auth-welcome h2 {
        font-size: 22px;
        white-space: normal;
    }
    
    .flow-form-row {
        grid-template-columns: 1fr;
    }
}
