@import url("_root.css");

/*
============================================
LOGIN

- Formulario de envio
- Confirmacao de envio
============================================
*/
.login {
    padding-top: 90px;
    padding-bottom: 190px;
    min-height: calc(var(--header-min-height) + 100px);
}

.login__titulo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    margin-bottom: 50px;
}

.login__titulo h1 {
    font-family: var(--header_h1-font-family);
    font-size: var(--header_h1-font-size);
    font-weight: var(--header_h1-font-weight);
    letter-spacing: var(--header_h1-letter-spacing);
    line-height: var(--header_h1-line-height);
    word-spacing: var(--header_h1-word-spacing);
}

.login__titulo h1 span {
    background: linear-gradient(80deg, #00a2ff, #ffffff);
    background: -webkit-linear-gradient(80deg, #00a2ff, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.login__titulo p {
    font-family: var(--header_h2-font-family);
    font-size: 14px;
    font-weight: var(--header_h2-font-weight);
    letter-spacing: 3px;
    color: #8c8c8c;
    margin-top: 15px;
}

.login__titulo h2 {
    font-family: var(--header_h2-font-family);
    font-size: var(--header_h2-font-size);
    font-weight: var(--header_h2-font-weight);
    letter-spacing: var(--header_h2-letter-spacing);
    line-height: var(--header_h2-line-height);
}

.login__titulo h2 span {
    background: linear-gradient(80deg, #00a2ff, #ffffff);
    background: -webkit-linear-gradient(80deg, #00a2ff, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.login__titulo p {
    color: #a1a1a1;
}

.login__already {
    display: flex;
    justify-content: center;
}

.login__already p {
    text-align: center;
    color: #a1a1a1;
    background-color: #f5f5f5;
    padding: 15px 50px;
    border-radius: 15px;
    width: fit-content;
}

.login__already a:link,
.login__already a:visited {
    color: #515151;
    text-decoration: none;
}

.login__already a:hover,
.login__already a:active {
    color: #000;
}

.login__view-step_2 {
    display: none;
}

.login__form {
    margin-top: 50px;
}

.login__form input {
    color: #000;
    background-color: #FFFFFF;
    border: 1px solid #c7c7c7;
    padding: 13px 20px 13px 20px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 22px;
    margin-right: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.login__form input:hover {
    border: 1px solid #00a2ff;
    box-shadow: rgba(0, 162, 255, 0.7) 0px 0px 29px 0px;
    transition: all 0.3s;
}

.login__form input:focus {
    border: 1px solid #007dc6;
    box-shadow: rgba(0, 123, 194, 1) 0px 0px 29px 0px;
    transition: all 0.3s;
}

.login__form-space {
    margin-bottom: 50px;
}

.login__form-code {
    text-align: center;
}

.login__form-button {
    margin-top: 75px;
    text-align: center;
}

.login__form-button a:link,
.login__form-button a:visited {
    text-decoration: none;
    color: #007bff;
    margin-right: 10px;
    width: fit-content;
}

.login__form-button a:hover,
.login__form-button a:active {
    color: #000;
}

.login__form-buttonAuth {
    margin-top: 90px;
    border-top: 1px solid #e2e2e2;
    padding-top: 50px;
    text-align: center;
}

.login__form-button p {
    font-family: var(--header_h2-font-family);
    font-size: 14px;
    font-weight: var(--header_h2-font-weight);
    letter-spacing: 3px;
    color: #8c8c8c;
    margin-top: 15px;
    text-align: center;
}

.verification-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: Arial, sans-serif;
}

.code-inputs {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.code-input {
    padding: 25px 10px 25px 10px !important;
    width: 70px;
    height: fit-content;
    font-size: 24px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
}

.code-input:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}


.get-codeClass {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.got-codeClass {
    margin-right: 20px;
    text-align: center;
    width: fit-content;
}

.got-codeClass:first-child::after {
    content: ".";
    margin-left: 20px;
    color: #8c8c8c;
}

.got-codeClass a:link,
.got-codeClass a:visited {
    text-decoration: none;
    color: #8c8c8c;
    font-size: 12px;
}

.got-codeClass a:hover,
.got-codeClass a:active {
    color: #007bff;
}












@media only screen and (max-width: 430px) {
    .login__titulo h1 {
        font-family: var(--header_h1-font-family);
        font-size: 65px;
        font-weight: var(--header_h1-font-weight);
        letter-spacing: var(--header_h1-letter-spacing);
        line-height: 55px;
        word-spacing: var(--header_h1-word-spacing);
    }

    .login__titulo p {
        font-family: var(--header_h2-font-family);
        font-size: 14px;
        /* line-height: 0px; */
        letter-spacing: 3px;
        color: #8c8c8c;
        margin-top: 15px;
    }

    .login__form-button .buttonWhite:link,
    .login__form-button .buttonWhite:visited {
        display: block;
        width: 100%;
    }

    .button {
        display: block;
        width: 100%;
        margin-bottom: 20px;
    }

    .code-input {
        padding: 20px 5px 20px 5px !important;
        width: 50px;
        height: fit-content;
        font-size: 24px;
        text-align: center;
        border: 1px solid #ccc;
        border-radius: 4px;
        outline: none;
    }

    .login__form input {
        color: #000;
        background-color: #FFFFFF;
        border: 1px solid #c7c7c7;
        padding: 13px 20px 13px 20px;
        border-radius: 15px;
        text-decoration: none;
        font-size: 22px;
        margin-right: 0px;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    }
}

@media only screen and (min-width: 431px) and (max-width: 768px) {
    .login__titulo h1 {
        font-family: var(--header_h1-font-family);
        font-size: 65px;
        font-weight: var(--header_h1-font-weight);
        letter-spacing: var(--header_h1-letter-spacing);
        line-height: 55px;
        word-spacing: var(--header_h1-word-spacing);
    }

    .login__titulo p {
        font-family: var(--header_h2-font-family);
        font-size: 14px;
        line-height: 0px;
        letter-spacing: 3px;
        color: #8c8c8c;
        margin-top: 15px;
    }

    .login__form-button .buttonWhite:link,
    .login__form-button .buttonWhite:visited {
        display: block;
        width: 100%;
    }

    .button {
        display: block;
        width: 100%;
        margin-bottom: 20px;
    }

    .code-input {
        padding: 25px 10px 25px 10px !important;
        width: 70px;
        height: fit-content;
        font-size: 24px;
        text-align: center;
        border: 1px solid #ccc;
        border-radius: 4px;
        outline: none;
    }

    .login__form input {
        color: #000;
        background-color: #FFFFFF;
        border: 1px solid #c7c7c7;
        padding: 13px 20px 13px 20px;
        border-radius: 15px;
        text-decoration: none;
        font-size: 22px;
        margin-right: 10px;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    }
}