.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--smoke-color);
    padding: 20px;
}

.auth-content {
    background: var(--white-color);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 480px;
}

.auth-title {
    color: var(--title-color);
    font-size: 28px;
    font-weight: 700;
    text-align: center;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--white-color);
    color: var(--title-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--smoke-color);
}

.social-icon {
    width: 20px;
    height: 20px;
    margin-left: 10px;
}

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

.divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: var(--border-color);
}

.divider span {
    background: var(--white-color);
    padding: 0 15px;
    position: relative;
    color: var(--light-color);
    font-size: 14px;
}

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

.form-label {
    color: var(--title-color);
    font-weight: 600;
    margin-bottom: 8px;
}

.form-control {
    height: 48px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 15px;
}

.form-control:focus {
    border-color: var(--theme-color);
    box-shadow: none;
}

.btn-primary {
    background: var(--theme-color);
    border: none;
    height: 48px;
    font-weight: 600;
    font-size: 16px;
}

.btn-primary:hover {
    background: var(--title-color);
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
    color: var(--light-color);
}

.auth-footer a {
    color: var(--theme-color);
    font-weight: 600;
}