/* --- LOGIN.CSS (Sadece Giriş Sayfası Stilleri) --- */

.login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 10;
    position: relative;
}

.login-container {
    background: rgba(3, 0, 20, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 20px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.login-header {
    margin-bottom: 2rem;
}

.login-logo {
    width: 80px;
    margin-bottom: 1rem;
    animation: floatLogo 4s ease-in-out infinite;
}

.login-header h2 {
    font-size: 2rem;
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.login-header p {
    color: #94A3B8;
}

/* Discord Butonu */
.btn-discord-full {
    background: #5865F2;
    color: white;
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
    margin-bottom: 2rem;
}

.btn-discord-full:hover {
    background: #4752c4;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(88, 101, 242, 0.4);
}

/* Google Butonu */
.btn-google-full {
    background: white;
    color: #333;
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
    margin-bottom: 2rem;
}

.btn-google-full:hover {
    background: #f1f1f1;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.btn-google-full svg path {
    fill: #333;
}

/* Google Butonu */
.btn-google-full {
    background: white;
    color: #333;
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
    margin-bottom: 2rem;
}

.btn-google-full:hover {
    background: #f1f1f1;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.btn-google-full svg path {
    fill: #333;
    /* Logonun rengini siyah yap */
}

/* Form Elemanları */
.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin-bottom: 2rem;
    color: #64748B;
    font-size: 0.9rem;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.divider span {
    padding: 0 10px;
}

.form-group {
    text-align: left;
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: white;
    font-family: var(--font-body);
    transition: 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
}

.login-footer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #94A3B8;
}

.login-footer a {
    color: var(--primary-color);
    text-decoration: none;
}

.back-link {
    display: block;
    margin-top: 1rem;
    color: #64748B !important;
    font-size: 0.8rem;
}