/* MFS Google Auth — Login Page Styles */

.mfsgauth-separator {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0 16px;
    gap: 12px;
}

.mfsgauth-separator::before,
.mfsgauth-separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #dcdcde;
}

.mfsgauth-separator span {
    font-size: 13px;
    color: #787c82;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.mfsgauth-button-wrap {
    margin-bottom: 16px;
}

.mfsgauth-google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #3c4043;
    background: #ffffff;
    border: 1px solid #dadce0;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    box-sizing: border-box;
    transition: background-color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    line-height: 1.4;
}

.mfsgauth-google-btn:hover {
    background-color: #f7f8f8;
    box-shadow: 0 1px 3px rgba(60, 64, 67, 0.15);
    border-color: #c6c9cc;
    color: #3c4043;
    text-decoration: none;
}

.mfsgauth-google-btn:focus {
    outline: none;
    box-shadow: 0 0 0 2px #4285f4;
    border-color: #4285f4;
    color: #3c4043;
}

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

.mfsgauth-google-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.mfsgauth-google-btn span {
    flex-shrink: 0;
}

.mfsgauth-google-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.mfsgauth-status {
    margin-top: 12px;
    padding: 10px 14px;
    font-size: 13px;
    border-radius: 4px;
    text-align: center;
}

.mfsgauth-status--error {
    color: #b32d2e;
    background: #fcf0f1;
    border: 1px solid #d63638;
}

.mfsgauth-status--success {
    color: #00a32a;
    background: #edfaef;
    border: 1px solid #00a32a;
}

.mfsgauth-gsi-hidden {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
    height: 0;
}
