.msg-error {
    background-color: rgba(255, 77, 77, 0.1);
    color: #ff4d4d;
    padding: 0.8rem;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 77, 77, 0.4);
    display: none;
}

.msg-success {
    background-color: rgba(0, 209, 102, 0.1);
    color: var(--accent-color);
    padding: 0.8rem;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 209, 102, 0.4);
    display: none;
}

.hidden {
    display: none !important;
}


.auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.5rem 0;
    color: var(--text-secondary);
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--border-color);
}

.auth-divider:not(:empty)::before {
    margin-right: .5em;
}

.auth-divider:not(:empty)::after {
    margin-left: .5em;
}


.google-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background-color: white;
    color: #1a1a2e;
    border: none;
    padding: 0.8rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.google-btn:hover {
    background-color: #f1f1f1;
    transform: translateY(-2px);
}

.google-btn svg {
    flex-shrink: 0;
}
