* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    min-height: 100vh;
}

*, button, input {
    border: 0;
    outline: 0;
}

:root {
    --template-primary: #fff;
    --red: #dc3545;

    --form: #f5f5f5;
    --border: #e3e3e3;
    --button: #003E73;
}

.form-title{
    border-radius: 5px 5px 0 0;
    background-color: #001F39;
    min-height: 79px;
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    color: #FFF;
    padding: 18px;
}

.form {
    background-color: var(--form);
    border: 1px solid var(--border);
    border-radius: 5px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
    height: fit-content;
    padding: 20px;
}

.form input {
    border-radius: 5px !important;
}

.form .link-recovery-password a {
    font-weight: 500;
    font-size: 14px;
    color: #000000;
}

.form .buttons {
    width: 100%;
    text-align: center;
}

.form .invalid {
    color: var(--red);
    border: 1px dotted;
}

.form .simbol-required {
    color: var(--red)
}

.form-login {
    border-radius: 0 0 5px 5px;
}

.header-external-pages {
    background-color: #fff;
    min-height: 78px;
    padding-top: 15px;
    padding-bottom: 10px;
    padding-left: 76px;
    margin-bottom:52px;
}

.header-external-pages .buttons-header{
    text-align: right;
    padding-right: 7%;
}

.btn-external-pages {
    border-radius: 5px;
    min-width: 150px;
    background-color: var(--button) !important;
}

.text-question-login-register{
    font-weight: 400;
    font-size: 14px;
    padding-right: 20px;
}

.header-external-pages .logo {
    max-height: 50px;
    max-width: 400px;
}

@media (max-width: 600px) {
    .header-external-pages {
        padding-left: 0 !important;
        margin-bottom:26px !important;
        text-align: center;
    }

    .header-external-pages .logo {
        max-width: 190px !important;
        margin: 5px;
    }

    .btn-external-pages {
        min-width: 100px !important;
    }
}

.instructions {
    font-weight: 500;
    font-size: 20px;
    line-height: 24.2px;
    color: #FFF;
}

.white-text {
    color: #FFF;
}

