/* Estilos para el login de Salas */

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.login-container {
    margin: 0;
    font-family: 'Roboto', Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    padding: 40px 20px;
}

.login-container2 {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    text-align: center;
    min-width: 350px;
    max-width: 500px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.login-container2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #4285f4, #34a853, #fbbc05, #ea4335);
}

.login-container2 h2 {
    color: #333;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.login-container2 p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 14px;
    line-height: 1.4;
}

.google-btn {
    margin-top: 2rem;
}

.google-btn a {
    background: white;
    color: #444;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.google-btn a:hover {
    background: #f8f9fa;
    border-color: #d0d0d0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    color: #333;
}

.google-btn a:active {
    transform: translateY(0);
}

.google-icon {
    width: 20px;
    height: 20px;
}

/* Mejoras para el footer */
footer {
    background-color: #324366;
    color: white;
    padding: 15px 0;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content .text-start {
    flex: 1;
    text-align: left;
}

.footer-content .text-end {
    flex: 1;
    text-align: right;
}

footer h6 {
    margin: 0 0 4px 0;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

footer p {
    margin: 0;
    font-size: 14px;
    line-height: 1.3;
    letter-spacing: 0.2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .login-container2 {
        padding: 2.5rem 1.5rem;
        min-width: 280px;
        max-width: 100%;
    }

    .login-container2 h2 {
        font-size: 1.5rem;
    }

    .login-container2 p {
        font-size: 14px;
    }

    .google-btn a {
        padding: 12px 20px;
        font-size: 14px;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-content .text-start,
    .footer-content .text-end {
        text-align: left;
        padding-left: 20px;
        padding-right: 0;
        margin-bottom: 10px;
    }
}
