@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

body {
    font-family: 'Montserrat', sans-serif; /* ✅ Aplicar la fuente Montserrat */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #f0f2f5;
    color: #333;
}

.container {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 450px; /* Aumentado para más contenido */
    width: 100%;
}

h1 {
    color: #000000;
    margin-bottom: 20px;
}

#session-info {
    font-size: 1.1em;
    margin-bottom: 25px;
    color: #555;
}

#login-methods h2 {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #444;
}

.method-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 10px;
}

.method-button img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

/* Estilos específicos para Google */
.google-button {
    background-color: #cfcfcf; /* Google Blue */
    color: black;
}
.google-button:hover {
    background-color: #9e9e9e;
}

/* Estilos específicos para Apple */
.apple-button {
    background-color: #000; /* Apple Black */
    color: white;
}
.apple-button:hover {
    background-color: #333;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
    color: #888;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #eee;
}

.divider:not(:empty)::before {
    margin-right: .25em;
}

.divider:not(:empty)::after {
    margin-left: .25em;
}


#status-message {
    margin-top: 20px;
    font-weight: bold;
    color: green;
}

#status-message.error {
    color: red;
}
