/* Auth Pages Common Styles (Login & Register) */

.account-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 80px 0;
    /* Animation moved to background-slide.css */
    background-repeat: repeat;
    background-position: 0 0;
}

.account-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.account-section > .container {
    position: relative;
    z-index: 2;
}

.account-form-area {
    background: rgba(20, 20, 40, 0.95);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.account-logo img {
    height: auto;
}

.social-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 20px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 12px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.social-login-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.continue-google .social-login-btn {
    background: rgba(66, 133, 244, 0.15);
    border-color: rgba(66, 133, 244, 0.3);
}

.continue-google .social-login-btn:hover {
    background: rgba(66, 133, 244, 0.25);
    border-color: rgba(66, 133, 244, 0.4);
}

.continue-facebook .social-login-btn {
    background: rgba(24, 119, 242, 0.15);
    border-color: rgba(24, 119, 242, 0.3);
}

.continue-facebook .social-login-btn:hover {
    background: rgba(24, 119, 242, 0.25);
    border-color: rgba(24, 119, 242, 0.4);
}

.auth-devide {
    text-align: center;
    margin: 25px 0;
    position: relative;
}

.auth-devide::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.auth-devide span {
    position: relative;
    background: rgba(20, 20, 40, 0.95);
    padding: 0 15px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

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

.form-group label {
    display: block;
    color: #fff;
    margin-bottom: 8px;
    font-size: 14px;
}

.form--control {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form--control:focus {
    outline: none;
    border-color: hsl(220, 55%, 40%);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px hsla(220, 55%, 40%, 0.1);
}

.form--control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.checkbox-wrapper {
    margin-top: 15px;
}

.checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.checkbox--input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    margin-top: 2px;
    flex-shrink: 0;
}

.checkbox--label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
    cursor: pointer;
    line-height: 1.5;
}

.checkbox--label a {
    color: hsl(220, 55%, 45%);
    text-decoration: underline;
}

.checkbox--label a:hover {
    color: hsl(220, 55%, 55%);
    text-decoration: none;
}

.text--base {
    color: hsl(220, 55%, 45%) !important;
}

.fs-12 {
    font-size: 12px;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, hsl(220, 55%, 30%) 0%, hsl(220, 55%, 25%) 100%);
    border: 2px solid hsl(220, 55%, 35%);
    border-radius: 8px;
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.4s ease;
    text-decoration: none !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.submit-btn * {
    position: relative;
    z-index: 2;
}

/* Parlama efekti */
.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover,
.submit-btn:focus,
.submit-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.35);
    color: #ffffff !important;
    background: linear-gradient(135deg, hsl(220, 55%, 40%) 0%, hsl(220, 55%, 30%) 100%);
    border-color: hsl(220, 60%, 45%);
    text-decoration: none !important;
}

.account-item {
    margin-top: 20px;
}

.account-item label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
}

.mt-10 {
    margin-top: 10px;
}

.icon img {
    width: 20px;
    height: 20px;
}

/* Phone Input Group */
.phone-input-group {
    display: flex;
    gap: 10px;
}

.phone-input-group select.form-control.form--control.phone-code-select {
    width: 110px;
    min-width: 110px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #fff;
    padding: 5px 22px 3px 21px;
    font-size: 14px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 10px;
    box-sizing: border-box;
    height: auto;
}

.phone-input-group select.phone-code-select:focus {
    outline: none;
    border-color: hsl(220, 55%, 40%);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px hsla(220, 55%, 40%, 0.1);
}

.phone-input-group select.phone-code-select option {
    background: #131722;
    color: #fff;
    padding: 10px;
}

.phone-input-group .phone-number-input {
    flex: 1;
}

@media (max-width: 576px) {
    .phone-input-group {
        flex-direction: column;
    }

    .phone-input-group select.phone-code-select {
        width: 100%;
    }
}

