﻿* {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    background-color: #f5f7fa;
    padding-top: 0;
    background: url(../../../imgSpiralia/portal/fondo-azul.png) no-repeat fixed;
    background-position: center;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.card-portal {
    display: flex;
    flex-direction: column;
    background: white;
    padding: 25px 65px;
    border-radius: 15px;
    text-align: center;
    align-items: center;
    width: 100%;
    max-width: 450px;
}

    .card-portal .logo-img {
        width: 250px;
        padding: 25px;
    }

    .card-portal h2 {
        font-size: 1.6em;
        font-weight: 700;
        color: #13486A;
    }

    .card-portal p {
        font-size: 1em;
        font-weight: 500;
        color: #13486A;
        margin-bottom: 10px;
    }

    .card-portal hr {
        border-bottom: .5px solid #cccccc;
        margin-bottom: 30px;
        width: 100%;
        max-width: 460px;
    }

    .card-portal button {
        background-color: #009688;
        color: white;
        border: none;
        padding: 10px 45px;
        width: 100%;
        max-width: 290px;
        border-radius: 10px;
    }

    .card-portal span {
        display: flex;
        gap: 5px;
        align-items: center;
        margin: 15px 0;
        color: #6b7280;
    }

    .card-portal span img {
        width: 20px;
    }

#suggestion {
    position: absolute;
    z-index: 2;
    top: -14px;
    left: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 15px;
    font-size: 1em;
    color: #868686;
    width: 100%;
    max-width: 290px;
}

.input-container {
    position: relative;
    background-color: #ffffff;
    width: inherit;
    border-radius: 5px;
    align-self: flex-start;
    display:flex;
    flex-direction:column;
    align-items: center;
}

#inputCode {
    outline: none;
    border: 1px solid #e1e3e6;
    border-radius: 10px;
    background-color: transparent;
    width: 100%;
    max-width: 290px;
    color: #000000;
    font-size: 1em;
    padding: 10px 15px;
    z-index: 3;
}

#divMensajeAlert {
    display: none;
    width: 100%;
    justify-content: center;
}

.mensajeAlerta {
    width: 100%;
    padding-top: 5px;
    padding-bottom: 5px;
    /* font-size: 14px; */
    display: flex;
    gap: 5px;
    align-items: center;
    color: red;
    align-content: center;
    justify-content: center;
    max-width: 290px;
}