:root {
    --flame-gradient: linear-gradient(to right, #2962FF, #1565C0);
    --c-purple-100: #9C27B0;
    --c-purple-300: #9684fe;
    --c-purple-500: #7762ff;  
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body, html {
    height: 100%;
    background: var(--c-purple-100);
    color: white;
}


.login-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
}

.logo {
    color: white;
    font-size: 48px;
    margin-bottom: 40px;
}


.login-methods {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Esto centrará horizontalmente los botones */
}

.terms-text {
    color: white;
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    max-width: 400px;
    padding: 0 20px;    
}

.terms-text a {
    color: white;
    text-decoration: underline;
}

.login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
}

.login-btn-google {
    background-color: white;
    color: rgba(0,0,0,1.0);
}

.login-btn-facebook {
    background-color: WHITE;
    border-radius: 20px;
    box-sizing: border-box;
    color: #1f1f1f;
    cursor: pointer;
    font-family: 'Roboto', arial, sans-serif;
    font-size: 14px;
    height: 40px;
    outline: none;
    overflow: hidden;
    padding: 20px;
    position: relative;
    text-align: center;
    transition: background-color .218s, border-color .218s, box-shadow .218s;
    vertical-align: middle;
    white-space: nowrap;
    width: 230px !important;
    max-width: 230px !important;
    margin-top: 20px;
    margin-bottom: 20px;
}

.login-btn img {
    margin-right: 10px;
    width: 24px;
    height: 24px;
}

.login-help {
    margin-top: 20px;
    text-decoration: underline;
    cursor: pointer;
}

.g_id_signin > div[role="button"] {
    width: 270px !important;
    max-width: 270px !important;
    margin-bottom: 25px;
}


@media screen and (max-width: 768px) {
    .login-container {
        padding: 15px;
    }
}