﻿/* Auth Layout */
.auth-container {
    display: flex;
    min-height: 100vh;
    background-color: #f8f9fa;
}

.auth-card {
    flex: 1;
    max-width: 500px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
}

.auth-background {
    flex: 1;
    background: url('/images/auth-bg.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    display: none;
}

@media (min-width: 992px) {
    .auth-background {
        display: block;
    }
}

.auth-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(103, 58, 183, 0.9) 0%, rgba(81, 45, 168, 0.9) 100%);
}

.auth-content {
    position: relative;
    z-index: 1;
    color: white;
    padding: 3rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .auth-content h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        font-weight: 700;
    }

    .auth-content p {
        font-size: 1.1rem;
        line-height: 1.6;
        opacity: 0.9;
    }

/* Auth Components */
.auth-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.auth-logo {
    height: 130px;
    margin-bottom: 1.5rem;
}

.auth-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    color: #7f8c8d;
    font-size: 1rem;
}

.auth-form {
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    display: block;
}

.input-group {
    margin-bottom: 0.5rem;
}

.input-group-text {
    background-color: #f8f9fa;
    color: #7f8c8d;
}

.form-control {
    height: 50px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s;
}

    .form-control:focus {
        border-color: #673ab7;
        box-shadow: 0 0 0 0.25rem rgba(103, 58, 183, 0.25);
    }

.toggle-password {
    cursor: pointer;
}

    .toggle-password:hover {
        background-color: #f8f9fa;
    }

.form-check-input {
    width: 1.2em;
    height: 1.2em;
    margin-top: 0.15em;
}

.form-check-label {
    margin-left: 0.5rem;
    color: #7f8c8d;
}

.auth-btn {
    height: 50px;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 1rem;
    background-color: #673ab7;
    border: none;
    transition: all 0.3s;
}

    .auth-btn:hover {
        background-color: #5e35b1;
        transform: translateY(-2px);
    }

.auth-links {
    text-align: center;
    margin-top: 1.5rem;
}

.auth-link {
    color: #673ab7;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

    .auth-link:hover {
        color: #5e35b1;
        text-decoration: underline;
    }

.auth-separator {
    color: #bdc3c7;
    margin: 0 0.5rem;
}

.auth-social {
    margin-top: 2rem;
    text-align: center;
}

.auth-social-text {
    position: relative;
    color: #7f8c8d;
    margin-bottom: 1.5rem;
}

    .auth-social-text::before,
    .auth-social-text::after {
        content: "";
        position: absolute;
        top: 50%;
        width: 30%;
        height: 1px;
        background-color: #e0e0e0;
    }

    .auth-social-text::before {
        left: 0;
    }

    .auth-social-text::after {
        right: 0;
    }

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-social {
    height: 50px;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.btn-google {
    background-color: #fff;
    color: #757575;
    border: 1px solid #e0e0e0;
}

    .btn-google:hover {
        background-color: #f5f5f5;
    }

.btn-facebook {
    background-color: #3b5998;
    color: white;
    border: none;
}

    .btn-facebook:hover {
        background-color: #344e86;
    }

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-card {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .auth-card {
        padding: 2rem 1.5rem;
    }

    .auth-title {
        font-size: 1.5rem;
    }
}


/* Şifremi Unuttum Sayfası Özel Stiller */
.auth-content ul.auth-benefits {
    margin-top: 1.5rem;
}

    .auth-content ul.auth-benefits li {
        margin-bottom: 0.75rem;
        display: flex;
        align-items: flex-start;
    }

    .auth-content ul.auth-benefits i {
        color: #4caf50;
        margin-top: 0.2rem;
    }

.text-danger.small {
    font-size: 0.8rem;
    margin-top: 0.25rem;
    display: block;
}

/* Alert Mesajları */
.alert {
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
}

.alert-success {
    background-color: rgba(25, 135, 84, 0.1);
    border-color: rgba(25, 135, 84, 0.2);
    color: #0f5132;
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.1);
    border-color: rgba(220, 53, 69, 0.2);
    color: #842029;
}

.btn-close {
    background-size: 0.75rem;
    padding: 0.5rem;
}