/* style.css - Daily RP Login Stilleri */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow-x: hidden;
}

/* Arka plan efektleri */
body::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 107, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

body::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 80%, rgba(255, 107, 107, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Ana kart */
.login-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 450px;
    padding: 20px;
}

.login-card {
    background: rgba(15, 20, 40, 0.85);
    backdrop-filter: blur(12px);
    border-radius: 28px;
    padding: 40px 35px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Logo Alanı */
.logo-area {
    text-align: center;
    margin-bottom: 35px;
}

.logo-image {
    width: 75px;
    height: 75px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 10px 25px -5px rgba(255, 77, 77, 0.4));
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ffffff, #ffb3b3);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 5px;
}

.logo-badge {
    display: inline-block;
    background: rgba(255, 77, 77, 0.2);
    padding: 4px 12px;
    border-radius: 40px;
    font-size: 11px;
    font-weight: 600;
    color: #ff8a8a;
    letter-spacing: 1px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 77, 77, 0.3);
}

/* Form elemanları */
.form-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #9ca3cf;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-label i {
    font-size: 13px;
    color: #ff6b6b;
}

.input-group-custom {
    position: relative;
    margin-bottom: 25px;
}

.input-group-custom input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(10, 14, 30, 0.7);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    font-size: 14px;
    color: #f0f0f0;
    font-weight: 500;
    transition: all 0.2s ease;
    font-family: 'Poppins', sans-serif;
}

.input-group-custom input:focus {
    outline: none;
    border-color: #ff6b6b;
    background: rgba(10, 14, 30, 0.9);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.input-group-custom input::placeholder {
    color: rgba(156, 163, 207, 0.5);
    font-weight: 400;
    font-size: 13px;
}

/* Giriş butonu */
.btn-login {
    background: linear-gradient(90deg, #ff4d4d, #ff6b6b);
    border: none;
    border-radius: 16px;
    color: white;
    font-weight: 700;
    font-size: 15px;
    padding: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 10px;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px -8px rgba(255, 77, 77, 0.4);
}

/* Alert stilleri */
.alert-custom {
    background: rgba(255, 77, 77, 0.12);
    border: 1px solid rgba(255, 77, 77, 0.3);
    border-radius: 16px;
    padding: 12px 16px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffb3b3;
    font-size: 13px;
    font-weight: 500;
    backdrop-filter: blur(4px);
}

.alert-custom i {
    font-size: 16px;
    color: #ff6b6b;
}

/* Footer */
.footer-note {
    text-align: center;
    margin-top: 25px;
    font-size: 11px;
    color: #5a608a;
    letter-spacing: 0.3px;
}

.footer-note i {
    font-size: 10px;
}

/* Responsive */
@media (max-width: 480px) {
    .login-card {
        padding: 30px 20px;
    }
    
    .logo-text {
        font-size: 24px;
    }
    
    .logo-icon {
        width: 65px;
        height: 65px;
    }
    
    .logo-icon i {
        font-size: 36px;
    }
}

/* Şifre göster/gizle butonu */
.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #7c82a8;
    cursor: pointer;
    font-size: 14px;
    transition: color 0.2s;
}

.toggle-password:hover {
    color: #ff6b6b;
}