/* ========== AUTH PAGES STİLLERİ ========== */

/* Auth Section */
.auth-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.auth-overlay {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.auth-overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(30deg, transparent 40%, rgba(255, 255, 255, 0.05) 40%, rgba(255, 255, 255, 0.05) 60%, transparent 60%),
        linear-gradient(150deg, transparent 40%, rgba(255, 255, 255, 0.03) 40%, rgba(255, 255, 255, 0.03) 60%, transparent 60%);
    background-size: 100px 100px;
    opacity: 0.5;
}

.auth-section .container {
    position: relative;
    z-index: 1;
}

/* Auth Wrapper */
.auth-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.auth-wrapper-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Auth Left - Info */
.auth-left {
    color: #fff;
}

.auth-brand {
    margin-bottom: 40px;
}

.auth-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.auth-description {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

/* Auth Features */
.auth-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: 0.3s;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(10px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 22px;
    color: #fff;
}

.feature-text h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Auth Stats */
.auth-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-box {
    text-align: center;
    padding: 25px 15px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: 0.3s;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
}

.stat-box h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-box p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-weight: 500;
}

/* Auth Right - Form */
.auth-right {
    display: flex;
    justify-content: center;
}

.auth-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.auth-card-large {
    max-width: 600px;
}

.auth-card-title {
    font-size: 28px;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 10px;
    text-align: center;
}

.auth-card-subtitle {
    text-align: center;
    color: #718096;
    font-size: 14px;
    margin-bottom: 30px;
}

.auth-card-subtitle a {
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.auth-card-subtitle a:hover {
    color: #764ba2;
}

/* User Type Selector */
.user-type-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.user-type-option {
    cursor: pointer;
}

.user-type-option input {
    display: none;
}

.user-type-card {
    padding: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
    background: #fff;
}

.user-type-card i {
    font-size: 32px;
    color: #cbd5e0;
    margin-bottom: 10px;
    transition: 0.3s;
}

.user-type-card span {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #4a5568;
    transition: 0.3s;
}

.user-type-option input:checked + .user-type-card {
    border-color: #667eea;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8ecff 100%);
}

.user-type-option input:checked + .user-type-card i {
    color: #667eea;
}

.user-type-option input:checked + .user-type-card span {
    color: #667eea;
}

.user-type-card:hover {
    border-color: #667eea;
    transform: translateY(-3px);
}

/* Auth Form */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #2d3748;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    color: #94a3b8;
    font-size: 16px;
    pointer-events: none;
}

.input-wrapper input {
    width: 100%;
    padding: 14px 15px 14px 45px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    color: #2d3748;
    transition: 0.3s;
    background: #fff;
}

.input-wrapper input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.toggle-password {
    position: absolute;
    right: 40px;
    top: 11px;
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 5px;
    transition: 0.3s;
}

.toggle-password:hover {
    color: #667eea;
}

/* Password Strength */
.password-strength {
    margin-top: 8px;
}

.strength-bar {
    width: 100%;
    height: 6px;
    background: #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 5px;
}

.strength-fill {
    height: 100%;
    width: 0;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: #e2e8f0;
}

.strength-text {
    font-size: 12px;
    color: #718096;
    font-weight: 600;
}

/* Form Checkbox */
.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
}

.form-checkbox span {
    font-size: 13px;
    color: #4a5568;
    line-height: 1.5;
}

.form-checkbox a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

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

/* Form Options */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -5px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #4a5568;
}

.remember-me input {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.forgot-password {
    font-size: 14px;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.forgot-password:hover {
    color: #764ba2;
}

/* Auth Button */
.btn-auth {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-auth:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-auth:active {
    transform: translateY(0);
}

/* Auth Divider */
.auth-divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 25px 0;
}

.auth-divider::before,
.auth-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

.auth-divider span {
    font-size: 13px;
    color: #94a3b8;
    font-weight: 600;
}

/* Social Auth */
.social-auth {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-btn {
    width: 100%;
    padding: 14px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: #fff;
    color: #2d3748;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.social-btn:hover {
    border-color: #cbd5e0;
    background: #f7fafc;
    transform: translateY(-2px);
}

.social-btn i {
    font-size: 18px;
}

.social-btn.google:hover {
    border-color: #ea4335;
    color: #ea4335;
}

.social-btn.linkedin:hover {
    border-color: #0a66c2;
    color: #0a66c2;
}

/* Forgot Password Page */
.forgot-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.forgot-icon i {
    font-size: 36px;
    color: #fff;
}

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

.back-to-login a {
    color: #667eea;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.back-to-login a:hover {
    color: #764ba2;
    gap: 12px;
}

.info-box-forgot {
    margin-top: 25px;
    padding: 15px;
    background: #f0f4ff;
    border-radius: 12px;
    border: 1px solid #e0e7ff;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.info-box-forgot i {
    color: #667eea;
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.info-box-forgot p {
    font-size: 13px;
    color: #4a5568;
    margin: 0;
    line-height: 1.6;
}

.info-box-forgot a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.info-box-forgot a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
    .auth-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .auth-left {
        text-align: center;
    }

    .auth-title {
        font-size: 36px;
    }

    .auth-features {
        max-width: 600px;
        margin: 0 auto;
    }

    .feature-item {
        text-align: left;
    }

    .auth-stats {
        max-width: 500px;
        margin: 40px auto 0;
    }
}

@media (max-width: 768px) {
    .auth-section {
        padding: 40px 0;
    }

    .auth-title {
        font-size: 28px;
    }

    .auth-description {
        font-size: 16px;
    }

    .auth-card {
        padding: 30px 25px;
    }

    .auth-card-title {
        font-size: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .user-type-selector {
        grid-template-columns: 1fr;
    }

    .auth-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .auth-card {
        padding: 25px 20px;
    }

    .input-wrapper input {
        padding: 12px 15px 12px 40px;
    }

    .btn-auth {
        padding: 14px;
    }
}
