@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Barlow", sans-serif;
}

/* ----------------------------  BACKGROUND ---------------------------- */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: url('../img/Login-oficial.jpg') no-repeat center center fixed;
    ;
    background-size: cover;
    background-position: center;
}

/* ----------------------------  BORDA DO CAMPO DE LOGIN ---------------------------- */
.container {
    width: 340px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, .0.3);
    border-radius: 10px;
    color: #fff;
    padding: 3px 20px;
    /*box-shadow: 0 0 30px    rgba(0, 0, 0, 0.3);*/
}

/* ----------------------------  AJUSTE DO LOGO INICIAL ---------------------------- */
.container h1 {
    text-align: center;
    margin: -3px;
}

.container h1 img {
    width: 250px;
    height: auto;
    display: block;
    margin: 0 auto;
}


/* ----------------------------  AJUSTE CAMPOS DE LOGIN E SENHA ---------------------- */
.input-box {
    position: relative;
    width: 100%;
    height: 25px;
    margin-bottom: 15px;
}

.input-box input {
    width: 100%;
    height: 40px;
    border: 1px solid #8b8a8a4d;
    border-radius: 10px;
    outline: none;
    font-size: 15px;
    color: #333;
    padding: 5px 15px
}

.input-box input::placeholder {
    color: #33333334;
    font-weight: normal
}

/* ----------------------------  TAG LEMBRAR SENHA  ---------------------- */
.remember-forgot label input {
    accent-color: #ff5000;
    margin-right: 10px;
    margin: 20px 0px;
}

/* ----------------------------  ICONES USER E SENHA  ---------------------- */
.input-box i {
    position: absolute;
    width: 100%;
    font-size: 18px;
    color: #888;
    right: -270px;
    top: 50%;
    transform: translateY(-10%);
    font-size: 18px;
    color: #c4c1c1;
}

.login {
    width: 100%;
    height: 50px;
    background-color: #ff5000;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);

}

.login:hover {
    background-color: #070505;
    border: 2px solid rgba(255, 255, 255, .0.3);
    color: #ff5000;
    transition: 0.5s;
    font-weight: bold
}

.separador {
    margin: 3rem 0 !important;
}

.modal-dialog.custom-xl {
    max-width: 98%;
    margin: auto;
    margin-top: 10px;
}