/* Google Authentication Button Styles */

.google-btn-container {
    margin: 20px 0;
    text-align: center;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e0e0e0;
}

.divider::before {
    margin-right: 10px;
}

.divider::after {
    margin-left: 10px;
}

.divider span {
    color: #757575;
    font-size: 14px;
}

.google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 20px;
    background-color: #ffffff;
    border: 1px solid #dadce0;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #3c4043;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.google-btn:hover {
    background-color: #f8f9fa;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    border-color: #c6c6c6;
}

.google-btn:active {
    background-color: #e8eaed;
}

.google-btn svg {
    width: 18px;
    height: 18px;
    margin-right: 12px;
}

.google-btn-text {
    flex: 1;
    text-align: center;
}

/* Dark mode support */
.login-dark .google-btn {
    background-color: #1a1a1a;
    border-color: #404040;
    color: #ffffff;
}

.login-dark .google-btn:hover {
    background-color: #2a2a2a;
    border-color: #505050;
}

.login-dark .divider::before,
.login-dark .divider::after {
    border-bottom-color: #404040;
}

.login-dark .divider span {
    color: #a0a0a0;
}

/* Error message styling */
.auth-error {
    background-color: #fee;
    color: #c33;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 15px;
    font-size: 14px;
    text-align: center;
}