.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 24px 60px;
    background: #07070e;
}

.auth-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 24px;
    width: 100%;
    max-width: 480px;
    overflow: hidden;
}

.auth-header {
    padding: 32px 32px 0;
    text-align: center;
}

.auth-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 24px;
}

.auth-logo .logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.auth-logo .logo-icon span {
    color: white;
    font-size: 28px;
}

.auth-logo span {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #eeeef8;
}

.auth-logo b {
    color: #a78bfa;
    font-weight: 800;
}

.auth-header h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #eeeef8;
    margin-bottom: 8px;
}

.auth-header p {
    color: #8888aa;
    font-size: 14px;
}

.auth-body {
    padding: 32px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #eeeef8;
}

.required {
    color: #f87171;
}

.input-group {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    transition: all 0.2s;
}

.input-group:focus-within {
    border-color: rgba(124,58,237,0.5);
    background: rgba(255,255,255,0.08);
}

.input-icon {
    padding: 0 12px;
    color: #6b6b90;
    display: flex;
    align-items: center;
}

.input-icon span {
    font-size: 20px;
}

.input-group input {
    flex: 1;
    border: none;
    padding: 14px 12px 14px 0;
    font-size: 14px;
    outline: none;
    background: transparent;
    font-family: 'Inter', sans-serif;
    color: #eeeef8;
    width: 100%;
}

.input-group input::placeholder {
    color: #6b6b90;
}

/* Autofill stilleri - tarayıcının otomatik doldurma rengini düzelt */
.input-group input:-webkit-autofill,
.input-group input:-webkit-autofill:hover,
.input-group input:-webkit-autofill:focus,
.input-group input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px rgba(255,255,255,0.05) inset !important;
    -webkit-text-fill-color: #eeeef8 !important;
    caret-color: #eeeef8 !important;
    background-color: transparent !important;
}

.input-group input:-webkit-autofill::first-line {
    color: #eeeef8 !important;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 0;
}

.auth-links {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.auth-links a {
    color: #a78bfa;
    text-decoration: none;
    font-size: 13px;
}

.auth-links a:hover {
    text-decoration: underline;
}

.auth-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
    border: none;
    border-radius: 40px;
    color: white;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    margin-top: 8px;
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(124,58,237,0.4);
}

.auth-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.auth-footer a {
    color: #a78bfa;
    text-decoration: none;
    font-weight: 500;
}

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

.opt-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    margin: 20px 0;
}

.opt-checkbox input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #7c3aed;
}

.opt-text {
    font-size: 13px;
    color: #8888aa;
}

.alert {
    padding: 14px 16px;
    border-radius: 12px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.alert-error {
    background: rgba(239,68,68,0.1);
    border-left: 4px solid #ef4444;
    color: #fca5a5;
}

.alert-success {
    background: rgba(16,185,129,0.1);
    border-left: 4px solid #10b981;
    color: #6ee7b7;
}

/* Input autofill için ek stiller */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    transition: background-color 5000s ease-in-out 0s;
    background-color: transparent !important;
}

@media (max-width: 768px) {
    .auth-container {
        padding: 80px 16px 40px;
    }
    .auth-body {
        padding: 24px;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 0;
    }
}