/* Google Sign-Up Section */
.google-login-section {
    margin-bottom: 1.5rem;
}

.btn-google {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    background-color: #ffffff;
    border: 1.5px solid #dadce0;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #3c4043;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.1);
}

.btn-google:hover {
    background-color: #f8f9fa;
    border-color: #d2d3d4;
    box-shadow: 0 1px 3px 0 rgba(60, 64, 67, 0.15);
    color: #3c4043 !important;
}

.btn-google:active {
    background-color: #f1f3f4;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.1);
}

.google-icon {
    flex-shrink: 0;
}

/* Divider Section */
.divider-section {
    display: flex;
    align-items: center;
    margin: 1.75rem 0;
    gap: 1rem;
}

.divider-line {
    flex: 1;
    height: 1px;
    background-color: #e5e7eb;
}

.divider-text {
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: lowercase;
    padding: 0 0.5rem;
}

/*# sourceMappingURL=login.css.map*/