﻿.btn-google {
    background-color: white;
    border: 1px solid #000000;
    border-radius: 999px;
    color: black;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
}

    .btn-google:hover {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
        transform: scale(1.05);
    }

    .btn-google img {
        width: 40px;
        height: 23px;
    }

.btn-facebook {
    background-color: cornflowerblue;
    border: 1px solid #000000;
    border-radius: 999px;
    color: white;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
}

    .btn-facebook:hover {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
        transform: scale(1.05);
    }

    .btn-facebook img {
        width: 28px;
        height: 25px;
    }

.login-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px; /* espacio entre botones */


    .paso {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

.paso.bloqueado {
    opacity: 0.5;
    pointer-events: none;
}
}

