/* OAuth Login Buttons */
.btn-google {
    background: #fff;
    color: #4285f4;
    border: 1px solid #dadce0;
    transition: all 0.3s ease;
}

.btn-google:hover {
    background: #f8f9fa;
    border-color: #dadce0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transform: translateY(-1px);
}

.btn-google i {
    color: #4285f4;
    margin-right: 8px;
}

.btn-discord {
    background: #5865F2;
    color: #fff;
    border: none;
    transition: all 0.3s ease;
}

.btn-discord:hover {
    background: #4752C4;
    box-shadow: 0 2px 8px rgba(88, 101, 242, 0.3);
    transform: translateY(-1px);
}

.btn-discord i {
    margin-right: 8px;
}

.auth-divider {
    margin: 20px 0;
    text-align: center;
    position: relative;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e0e0e0;
}

.auth-divider span {
    background: #fff;
    padding: 0 15px;
    position: relative;
    color: #666;
    font-size: 14px;
}

