﻿.google-login-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 92vh;
    width: 89%;
    padding: 20px;
    background-color: white;
    position: relative;
    margin: 0px;
}

.close-button {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    background: gray;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 1;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .close-button:focus {
        outline: none;
        box-shadow: none; /* elimina sombra azul */
    }

    .close-button:active {
        transform: scale(0.98); /* efecto de tap visual */
        opacity: 0.9; /* ligero cambio de opacidad */
    }

.google-login-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    text-align: center;
    width: 90%;
}

.title {
    font-size: 16px;
    color: var(--ct-brand-color);
    margin-bottom: 10px;
}

.message {
    font-size: 15px;
    color: black;
    margin: 0 10px 20px 10px;
}

.collaborator-button {
    background-color: var(--ct-brand-color);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 10px 16px;
    font-size: 14px;
    cursor: pointer;
    height: 45px;
    width: 90%;
    transition: all 0.2s ease; /* transiciones suaves */
    outline: none;
    -webkit-tap-highlight-color: transparent; /* Quita sombra en móviles Android */
}

    .collaborator-button:focus {
        outline: none;
        box-shadow: none; /* elimina sombra azul */
    }

    .collaborator-button:active {
        transform: scale(0.98); /* efecto de tap visual */
        opacity: 0.9; /* ligero cambio de opacidad */
    }
