@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400&display=swap");

body {
    margin: 0px;
    background: #112537;
    font-family: "Poppins", sans-serif;
}
/*body * {
        font-family: Verdana, Geneva, Tahoma, sans-serif;
    }*/
.main-login {
    width: 99vw;
    height: 70vh;
    /*background: #112537;*/
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; /* adicionado */
}


    .left-login > h1 {
        color: #f0ffffde;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        text-transform: uppercase;
    }

.right-login {
    width: 50vw;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-login {
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 30px 35px;
    /*background:#2f2841;*/
    border-radius: 10px;
    background-color: #FFF;
}

.control-label {
    color: #000 !important;
}

.card-login > h1 {
    color: #00ff88;
    font-weight: 800;
    margin: 10px;
}

.card-login > img {
    width: 150px;
    margin-bottom: 20px;
}

.textfield {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin: 10px 0px;
}

    .textfield > input {
        width: 100%;
        border: none;
        border-radius: 5px;
        padding: 15px;
        background-color: #F6F7F9;
        color: #112537;
        font-size: 10pt;
        outline: none;
        box-sizing: border-box;
    }

    .textfield > label {
        color: #112537;
        margin-bottom: 5px;
    }

.textfield > input::placeholder{
      color:#4cff00;
}

.btn-login {
    width: 100%;
    padding: 16px 0px;
    margin: 15px;
    border: none;
    border-radius: 5px;
    outline: none;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
    background: #254057;
    cursor: pointer;
    box-shadow: 0px 10px 40px -12px #00ff8502;
    transition: background-color 0.5s ease-in-out;
}

    .btn-login:hover {
        background-color: #2f4a63;
    }

.logo-login {    
    height: 12vh;
    width: 12vw;
    float: left;
    top: 0px;    
}

.image-login {
    width:100%;
    height:100%
}

@media only screen and (max-width: 900px) {
    .left-login {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .right-login {
        width: 100%;
        margin-top: 20px;
    }

    .card-login {
        max-width: 100%;
    }
}
