@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    --back_input: #4e2c0c;
    --main: linear-gradient(90deg, rgba(31, 18, 4, 1) 13%, rgba(52, 29, 8, 1) 44%);
    --card_login: linear-gradient(90deg, rgba(47, 34, 20, 1) 31%, rgba(52, 29, 8, 1) 41%);
    --btn_login: linear-gradient(135deg, #58864c 40%, #41942c);
    --btn_adm: linear-gradient(135deg, rgb(174, 19, 19) 40%, #531515);
    --btn_user: linear-gradient(135deg, #1746d3 30%, rgb(131, 122, 189));
}

body * {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Noto Sans', sans-serif !important;
}

main {
    width: 100vw;
    height: 100vh;
    background: var(--main);
    display: flex;
    justify-content: center;
    align-items: center;
}

.left-login {
    width: 50vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.left-login h1 {
    font-size: 3vw;
    color: white;
}

.left-login-image {
    width: 35vw;
}

.right-login {
    width: 50vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-login {
    width: 80%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 10px 10px;
    background: var(--card_login);
    border-radius: 0px;
    box-shadow: 0px 10px 40px #75757556;
}

.card-login div label {
    color: white;
    font-size: 13px;
}

.card-login h1 {
    color: white;
    font-weight: 800;
    margin: 0;
    font-size: 1.5rem;
}

.textfield {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin: 5px 0px;
    font-size: 10pt;
}

.textfield input {
    width: 100%;
    border: none;
    border-radius: 5px;
    padding: 10px;
    background: var(--back_input);
    color: #f0ffffde;
    font-size: 12pt;
    box-shadow: 0px 10px 40px #00000056;
    outline: none;
    box-sizing: border-box;
}


.textfield p {
    color: #f0ffffde;
    margin-bottom: 2px;
}

.textfield input::placeholder {
    color: #f0ffff94;
}

.div-btn {
    display: inline-flex;
    width: 100%;

}

.btn-login {
    width: 100%;
    padding: 10px 0;
    margin-top: 25px;
    border: none;
    border-radius: 4px;
    outline: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 3px;
    color: white;
    cursor: pointer;
}

.login {
    background: var(--btn_login);
}

.adm {
    background: var(--btn_adm);
}

.user {
    background: var(--btn_user)
}

a {
    font-family: 'Noto Sans', sans-serif !important;
    text-decoration: none;
    text-align: center;
}


.btn-login:hover {
    transform: scale(1.02);
}

@media only screen and (max-width:950px) {
    .card-login {
        width: 85%;
    }
}

@media only screen and (max-width:600px) {
    main {
        flex-direction: column;
        /* height: 100%; */

    }

    .left-login h1 {
        display: none;
    }

    .left-login {
        width: 100%;
        height: auto;
    }

    .right-login {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }

    .left-login-image {
        width: 50vw;
    }

    .card-login {
        width: 80%;
    }
}

button:disabled,
button[disabled] {
    opacity: 0.3;
}