/**
 * ==================================================================
 * Project      : Shops
 * File         : css/login.css
 * Author       : Erica Mae Yeban
 * Created Date : 2026-05-30
 *
 * Copyright (c) 2026 Chomp.
 * All Rights Reserved.
 *
 * NOTICE:
 * This source code contains proprietary information owned by
 * Chomp Organization. The contents of this file may not be copied,
 * modified, distributed, disclosed, or used without express
 * written authorization from the copyright holder.
 * ==================================================================
 */

.auth-card {
    max-width: 450px;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--text-light);
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--border-light);
}

.divider span {
    padding: 0 1rem;
    font-size: 0.875rem;
}

.social-btn {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 0.75rem;
    transition: all var(--transition-fast);
}

.social-btn:hover {
    background-color: var(--gray-50);
    border-color: var(--border-medium);
}
