/* Social Buttons Styling */
.social-login {
    margin-top: 18px;
    text-align: center;
}

.btn-google {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #fff;
    color: #1f2b34;
    border: 1px solid rgba(23, 33, 44, 0.12);
    border-radius: 12px;
    padding: 12px 18px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 10px 24px rgba(12, 23, 31, 0.12);
}

.btn-google:hover {
    background: #f4fbfb;
    border-color: rgba(43, 154, 163, 0.5);
}

.btn-google .icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

/* Future Facebook Button */
.btn-facebook {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #3b5998;
    color: #fff;
    border: 1px solid #3b5998;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.btn-facebook:hover {
    background: #334d84;
}

.btn-facebook .icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}
