/* Page de Login CSS */

/* config css do sistema */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200&family=Rancho&display=swap');

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

/* fim confug css do sistema */

body {
    font-family: 'Poppins', sans-serif;
}

body[light-mode=dark] {
    background-color: #2a3658ff !important;
    color: #ced4e2;
}

.page-login {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #3366CC;
}

body[light-mode=dark] .page-login{
    background-color: #2a3658ff !important;
    color: #ced4e2;
}

.box-login {
    width: 400px;
    padding: 10px;
    background-color: #EBFFFF;
    border: 1px solid #ccc;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0px 5px 7px 2px #0e5067;
    /* border-top-left-radius: 50px;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 15px; */
}

body[light-mode=dark] .box-login {
    background-color: #546eb4ff;
    box-shadow: 0px 5px 7px 2px rgb(26, 34, 54);
    border: 1px solid white;
}


.box-login h5 {
    font-weight: bold;
    color: #3366CC;
}

body[light-mode=dark]  .box-login h5 {
    color: white;
}

.label-card {
    width: 20%;
    font-weight: bold;
    display: inline-block;
    font-size: 19px;
}

.box-login input[type=text] {
    width: 74%;
    height: 40px;
    border-radius: 25px;
    background-color: transparent;
    border: 2px solid #ccc;
    margin: 10px 0;
    padding: 0 15px;
    color: black;
    display: inline-block;
}

.box-login input[type=email] {
    width: 74%;
    height: 40px;
    border-radius: 25px;
    background-color: transparent;
    border: 1px solid rgb(119, 119, 119);
    margin: 10px 0;
    padding: 0 15px;
    color: black;
    display: inline-block;
}

body[light-mode=dark]  .box-login input[type=email] {
    border: 1px solid white;
}

.box-login input[type=password] {
    width: 74%;
    height: 40px;
    border-radius: 25px;
    background-color: transparent;
    border: 1px solid rgb(119, 119, 119);
    margin: 10px 0;
    padding: 0 15px;
    color: black;
    display: inline-block;
}

body[light-mode=dark]  .box-login input[type=password] {
    border: 1px solid white;
}

.box-login input[type=email]::-webkit-input-placeholder {
    color: #1785AA;
    font-weight: 100;
}

.box-login input[type=password]::-webkit-input-placeholder {
    color: #1785AA;
}

body[light-mode=dark] .box-login input[type=email]::-webkit-input-placeholder {
    color: white;
}

body[light-mode=dark] .box-login input[type=password]::-webkit-input-placeholder {
    color: white;
}

.box-login form>a {
    /* text-decoration: none; */
    color: #1785AA;
    margin-left: 80px;
    font-weight: bold;
    font-size: 13px;
}

.box-login form>a:hover {
    color: #42a5f5;
}

.box-login form>div>a {
    /* text-decoration: none; */
    color: #3366CC;
    font-weight: bold;
    font-size: 12px;
}

.box-login form>div>a:hover {
    color: #42a5f5;
}

body[light-mode=dark] .box-login form>div>a {
    /* text-decoration: none; */
    color: rgb(219, 219, 219);
}

body[light-mode=dark] .box-login form>div>a:hover {
    color: #155a92;
}

.box-login a {
    /* text-decoration: none; */
    color: #3366CC;
    /* font-weight: bold;
    font-size: 12px; */
}

body[light-mode=dark] .box-login a {
    /* text-decoration: none; */
    color: white;
    /* font-weight: bold;
    font-size: 12px; */
}

.box-login form>div>label>span {
    /* text-decoration: none; */
    font-size: 13px;
}

.btn-submit {
    /* width: 60%;
    height: 40px; */
    width: 100%;
    padding: 10px 30px;
    border-radius: 25px;
    background-color: #3366CC;
    color: white;
    border: none;
    margin: 20px auto;
    display: block;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
}

.btn-submit:hover {
    background-color: #3871e2;
}

body[light-mode=dark] .btn-submit {
    background-color: rgb(61, 78, 128);
}

body[light-mode=dark] .btn-submit:hover {
    background-color: rgb(45, 57, 94);
}

.btn-submit2 {
    padding: 10px 30px;
    border-radius: 5px;
    background-color: #B61F0E;
    color: white;
    border: none;
    margin: 20px auto;
    display: block;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
}

.btn-submit2 h3 {
    text-align: center;
}

.btn-submit2:hover {
    background-color: #f02913;
}


/* Fim page de login CSS */

.modal-confirm {
    width: 400px;
    background-color: white;
    padding: 50px;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.modal-confirm span {
    width: 80%;
    display: flex;
    justify-content: space-between;
}



/* Responsivo da tela de login */

@media screen and (max-width: 511px) {

    .box-login {
        width: 100%;
        padding: 10px;
    }

    .label-card {
        display: block;
    }

    .box-login input[type=text],
    .box-login input[type=email],
    .box-login input[type=password] {
        width: 100%;
    }



}