.socialLogin {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.socialText {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #555;
  margin-top: -10px;
}

.socialBtnsRow {
    display: flex;          /* side by side */
    gap: 10px;
    width: 100%;            /* full width of container */
    max-width: 300px;       /* optional: limit width */
}

.socialBtn {
    flex: 1;                /* equal width */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;               /* space between icon and text */
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
    margin-top: -20px;
}

.socialBtn:hover {
    transform: scale(1.03);
}

.socialLogo {
    width: 20px;
    height: 20px;
}

/* Google */
.googleBtn {
    background: var(--card-bg, #fff);
    color: var(--text-main, #000);
    border: 1px solid var(--border-color, #dadce0);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-radius: 12px;
    padding: 14px;
    font-size: 1.05rem;
    width: 100%;
}