

#google-sign-in-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
    
    height: 40px; 
    width: 240px;
    padding: 0 12px;
    margin-top: 15px;
    
    background-color: #FFFFFF;
    border: 1px solid #dadce0;
    border-radius: 20px; 
    
    /* Fuente y texto */
    color: #3c4043; 
    font-size: 14px;
    font-family: Roboto, Arial, sans-serif;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s, box-shadow 0.3s;
}

#google-sign-in-button:hover {
    background-color: #f7f9fa;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

#google-sign-in-button:active {
    background-color: #e8e8e8;
}

/* Estilos del ícono */
.google-icon {
    margin-right: 12px; 
    display: flex;
    align-items: center;
    color: #4285F4;
}

.google-icon i{
    font-size: 18px;
}