    /* Reset básico */
    * {
        margin: 0;
        padding: 0;
        /* box-sizing: border-box; */
    }


    /* SELECTION STYLING */
    ::selection {
        color: var(--primary-color) ;
        background: var(--details-color);
    }
    ::-moz-selection {
        color: var(--primary-color)     ;
        background: var(--details-color);
    }

    /* RESET */
    * {
        margin: 0;
        padding: 0;
        border: 0;
    }

    /* BACKGROUND */
    .gradient {
        width: 100%;
        height: 100%;
        position: fixed;
        background: #1c355d;
    }

    /* LOGIN FORM */
    .login-form {
        top: 9em;
        width: 300px;
        margin: 0 auto;
        position: relative;
        z-index: 5;
        background: #f3f3f3;
        border: 1px solid #fff;
        border-radius: 2%;
        box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
        -webkit-box-shadow: 13px 13px 22px #00050c;
    }

    /* LOGO */
    .logoTopRoute {
        cursor: pointer;
        border: 1px solid #fff;
        border-bottom: none;
        border-right: none;
        border-top: none;
    }
    .logoTopRoute:hover {
        cursor: pointer;
    }

    /* HEADER */
    .login-form .header {
        text-align: center;
        background: var(--fundoPretoImg);
        border-radius: 3% 3% 0% 0%;
        padding-top: 14px;
    }
    .login-form .header h1 {
        font-family: 'Bree Serif', serif;
        font-weight: 300;
        font-size: 28px;
        line-height: 34px;
        color: var(--details-color);
        margin-bottom: 10px;
    }
    .login-form .header span {
        font-size: 11px;
        line-height: 16px;
        color: #ffffff;
    }

    /* CONTENT */
    .login-form .content {
        padding: 26px 30px 20px 30px;
        background: #152744;
    }
    .login-form .content .input {
        width: 100%;
        padding: 15px 25px;
        font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
        font-weight: 400;
        font-size: 14px;
        color: #9d9e9e;
        text-shadow: 1px 1px 0 rgba(256, 256, 256, 1.0);
        background: #fff;
        border: 1px solid #fff;
        border-radius: 5px;
        box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.50);
        -moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.50);
    }
    /* Seleção personalizada */
    ::selection,
    ::-moz-selection {
        background: var(--details-color);
        color: #fff;
    }


    /* Fundo da tela */
    .gradient {
        position: fixed;
        width: 100vw;
        height: 100vh;
        background: #1c355d;
        top: 0;
        left: 0;
        z-index: 0;
    }

    /* Formulário de login */
    .login-form {
        position: relative;
        top: 9em;
        width: 300px;
        margin: 0 auto;
        /* background: var(--primary-color); */
        border: 1px solid var(--details-color);
        border-radius: 8px;
        box-shadow: 0 2px 12px var(--details-color);
        z-index: 2;
    }

    /* Logo */
    .logoTopRoute {
        border-left: 1px solid #fff;
        cursor: pointer;
    }
    .logoTopRoute:hover {
        opacity: 0.9;
    }

    /* Cabeçalho */
    .login-form .header {
         background: var(--fundoPretoImg);
        border-radius: 8px 8px 0 0;
        text-align: center;
        padding: 16px 0 8px 0;
    }
    .login-form .header h1 {
        font-family: 'Bree Serif', serif;
        font-size: 28px;
        color: var(--details-color);
        margin-bottom: 8px;
        font-weight: 400;
    }
    .login-form .header span {
        font-size: 12px;
        color: #fff;
    }

    /* Conteúdo */
    .login-form .content {
        background: var(--fundoPretoImg);
        padding: 24px 28px 18px 28px;
    }
    .login-form .content .input {
        width: 100%;
        padding: 14px 20px;
        font-size: 15px;
        color: #757575;
        background: #fff;
        border: 1px solid #e0e0e0;
        border-radius: 5px;
        margin-bottom: 18px;
        box-shadow: 0 1px 2px rgba(0,0,0,0.08) inset;
        transition: background 0.3s, color 0.3s;
    }
    .login-form .content .input:focus {
        background: #e8f0fe;
        color: #222;
        outline: none;
    }

    /* Rodapé */
    .login-form .footer1 {
        background: #d4dedf;
        border-top: 1px solid #fff;
        border-radius: 0 0 8px 8px;
        text-align: center;
        padding: 32px 0 28px 0;
        box-shadow: 0 -1px 0 rgba(0,0,0,0.07) inset;
    }

    /* Botão de login */
    .login-form .footer1 .button {
        width: 90%;
        height: 48px;
        padding: 10px 0;
        font-family: 'Bree Serif', serif;
        font-size: 18px;
        color: #fff;
        background: var(--secondary-color);
        border: none;
        border-radius: 5px;
        cursor: pointer;
        box-shadow: 0 1px 2px rgba(0,0,0,0.10) inset;
        transition: background 0.3s;
    }
    .login-form .footer1 .button:hover {
        background: var(--details-color);
    }
    .login-form .footer1 .button:focus {
        background: #56c2e1;
        outline: none;
    }

    /* Botão de registro */
    .login-form .footer1 .register {
        display: inline-block;
        margin-top: 12px;
        background: none;
        border: none;
        font-family: 'Bree Serif', serif;
        font-size: 16px;
        color: #414848;
        cursor: pointer;
        transition: color 0.3s;
    }
    .login-form .footer1 .register:hover {
        color: #3f9db8;
    }


    /* Imagem do logo no formulário de login */
    .login-form .header img {
        height: 80px;
        width: 120px;
        object-fit: contain;
        /* display: block; */
        margin: 0 auto 10px auto;
    }