﻿.google-login-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    color: #555555;
    border: 1px solid #dddddd;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    width: 100%; /* Full width */
    max-width: 400px; /* Optional: limit the max width */
    margin: 5px auto; /* Center align if there's a max-width */
}

    .google-login-button img {
        margin-right: 8px;
        width: 20px;
        height: 20px;
    }

    .google-login-button:hover {
        background-color: #f7f7f7;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    }

    .google-login-button:active {
        background-color: #eeeeee;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    }

    .google-login-button:focus {
        outline: none;
    }




.facebook-login-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #4267B2;
    color: #ffffff;
    border: 1px solid #dddddd;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 400px;
    margin: 5px auto;
}

    .facebook-login-button img {
        margin-right: 8px;
        width: 20px;
        height: 20px;
    }

    .facebook-login-button:hover {
        background-color: #f7f7f7;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    }

    .facebook-login-button:active {
        background-color: #eeeeee;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    }

    .facebook-login-button:focus {
        outline: none;
    }