/* Login Sayfası Stilleri */
body {
    background-color: #0a0e14;
    color: #e6edf3;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    width: 100%;
    max-width: 500px;
    padding: 20px;
}

.login-card {
    width: 130%;    
    background-color: #111827;
    border-radius: 8px;
    border: 1px solid #1f2937;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.login-header {
    padding: 1.5rem;
    border-bottom: 1px solid #1f2937;
}


.logo-container i {
    color: #10b981;
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.logo-text {
    color: #e6edf3;
}

.login-body {
    padding: 2rem;
}

.login-body h2 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #e6edf3;
    font-size: 2rem;
}

.login-description {
    color: #9ca3af;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 1.1rem;
    color: #e6edf3;
}

.required {
    color: #ef4444;
}

.form-group input {
    padding: 0.75rem 1rem;
    border-radius: 4px;
    border: 1px solid #1f2937;
    background-color: #1f2937;
    color: #e6edf3;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: #10b981;
}

.form-actions {
    margin-top: 1rem;
}

.btn-login {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: #10b981;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-login:hover {
    background-color: #059669;
}

.form-footer {
    text-align: center;
    font-size: 0.9rem;
    color: #9ca3af;
}

.form-footer a {
    color: #10b981;
    text-decoration: none;
    font-weight: 500;
}

.form-footer a:hover {
    text-decoration: underline;
}

.social-login {
    margin-top: 20px;
    text-align: center;
}

.social-login-divider {
    display: flex;
    align-items: center;
    margin: 15px 0;
    color: #9ca3af;
}

.social-login-divider::before,
.social-login-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #374151;
}

.social-login-divider span {
    margin: 0 10px;
    font-size: 14px;
}

.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    padding: 10px 15px;
    background-color: #ffffff;
    color: #202124;
    border: 1px solid #dadce0;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s;
}

.btn-google:hover {
    background-color: #f8f9fa;
}

.google-icon {
    width: 18px;
    height: 18px;
    margin-right: 10px;
}

@media (max-width: 600px) {
    
    .login-container {
        padding: 10px;
    }

    
    .fb-desc{
        display: none;
    }

}
.flash-message {
    font-weight: bold;
    color: #fff !important;
    background: linear-gradient(90deg, #e53935 0%, #e35d5b 100%);
    border: 2px solid #b71c1c;
    box-shadow: 0 4px 12px rgba(229,57,53,0.2);
    border-radius: 6px;
    font-size: 1.1em;
    letter-spacing: 0.5px;
    padding: 14px 20px;
    margin-bottom: 18px;
    transition: box-shadow 0.3s;
    text-align: center;
}
.flash-message.alert-success {
    background: linear-gradient(90deg, #43a047 0%, #66bb6a 100%);
    border-color: #1b5e20;
}
.flash-message.alert-warning {
    background: linear-gradient(90deg, #ffa000 0%, #ffc107 100%);
    border-color: #ff6f00;
    color: #222 !important;
}
.flash-message.alert-info {
    background: linear-gradient(90deg, #1976d2 0%, #64b5f6 100%);
    border-color: #0d47a1;
}

.fb-login-wrapper {
        
        width: 90%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        min-height: 100vh;
        background: #0a0e14;
    }
    .fb-left {
        flex: 1;
        max-width: 420px;
        margin-right: 60px;
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }
    .fb-logo {
        
        width: 600px;
        margin-left: -280px;
        margin-top: 50px;
    }
    .fb-title {
        font-size: 2.2rem;
        color: #10b981;
        margin-bottom: 10px;
        font-weight: bold;
        letter-spacing: 1px;
    }
    .fb-desc {
        flex-grow: 1;
        font-size: 1.8rem;
        color: #e6edf3;
        margin-bottom: 10px;
        line-height: 1.5;
        width: 600px;
        margin-left: -120px;
    }
    .fb-right {
        
        flex: 1;
        max-width: 420px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    
    .fb-register {
        margin-top: 18px;
        text-align: center;
        font-size: 1rem;
        color: #9ca3af;
    }
    .fb-register a {
        color: #10b981;
        font-weight: bold;
        text-decoration: none;
    }
    .fb-register a:hover {
        text-decoration: underline;
    }
    @media (max-width: 900px) {
        .login-description {
            color: #9ca3af;
            margin-bottom: 2rem;
            line-height: 1.5;
        }

        .login-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .form-group label {
            font-size: .8rem;
            color: #e6edf3;
        }
        .login-body {
            padding: 1rem;
        }

        .login-body h2 {
            margin-top: 0;
            margin-bottom: 1rem;
            color: #e6edf3;
            font-size: 1rem;
        }

        .login-card {
            width: 100%;
        }
        .fb-logo {
            width: 450px;
            margin-top: 100px;
            margin-left: 40px;        
        }
        .fb-login-wrapper {
            flex-direction: column;
            align-items: center;
        }
        .fb-left, .fb-right {
            max-width: 100%;
            margin: 0;
            text-align: center;
            align-items: center;
        }
        .fb-left {
            margin-bottom: 30px;
        }
        .fb-desc{
            margin-top: 30px;
        }
        .logo-container {
            margin-top: 50px;
            padding-left: 0;
            margin-left: 0;
        }
        .fb-register{
            margin-bottom: 30px;
        }
    }

    .logo-container {       
        overflow: hidden;
        height: 320px;
        width: 1200px;
        margin-left: -300px;
        margin-top: -100px;
    }

    .toggle-password-btn {
    position: absolute;
    right: 12px;
    top: 70%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #9ca3af;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.95em;
    padding: 0 4px;
    z-index: 2;
}
.toggle-password-btn:focus {
    outline: none;
}
.toggle-password-btn i {
    font-size: 1.2em;
    margin-right: 4px;
}
.toggle-password-text {
    font-size: 0.95em;
}


/* Misafir olarak devam et butonu stilleri */

.btn-guest {
    background-color: #222;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 0;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 12px;
    transition: background 0.2s;
    display: block;
    width: 100%;
    text-decoration: none;
}
.btn-guest:hover {
    background: #333;
    color: #10b981;
}