﻿@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans', sans-serif;
}

.main-login {
    width: 100vw;
    height: 100vh;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.left-login {
    width: 50vw;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.left-login-image {
    width: 45vw;
    position: relative;
    top: 0px;
}

.footer {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-image {
    margin: 0;
    width: 20rem;
}

.logo-desenvolver {
    width: 13vw;
    position: relative;
    top: 150px;
}

.logo-mobile {
    display: none;
}

.right-login {
    width: 50vw;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

.textfield .has-erro{
   border: 1px solid #ff0000;
}

.textfield span {
    margin-top: 8px;
    color: #bb3838;
    font-size: 12px;
    margin-left: 45px;
}

.card-login {
    width: 40rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 4rem 2rem;
    background: #eee; 
}


.card-login .logo {
    margin: 0;
    width: 50%;
}

.card-login p {
    color: #666;
    font-weight: 500;
    margin: 3rem 0 0rem 0;
    font-family: 'Noto Sans', sans-serif;
}

.card-login form {
    width: 100%;
}

.card-login form .ng-active {
    text-align: left;
}

.card-login form .ng-scope,
.card-login form .ng-active span {
    display: inline-block;
    width: 100%;
    margin: 1rem 0 0 0;
    padding: 0;
    text-align: left;
}

.textfield {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin: 2rem 0;
}

.textfield > input {
    width: 100%;
    border: 1px solid #666;
    border-radius: 0px;
    padding: 1rem;
    background: #fff;
    color: #666;
    outline: none;
}

.textfield > label {
    color: #666;
    margin-bottom: 3px;
}

.textfield > input::placeholder {
    color: #ccc;
}

.btn-login {
    width: 100%;
    padding: 1rem;
    margin: 0;
    border: 2px solid;
    border-color: #00417f;
    border-radius: 0;
    outline: none;
    font-weight: 600;
    color: #fff;
    background-color: #00417f;
    cursor: pointer;
}

.btn-login:hover {
    border-color: #00417f;
    background-color: #fff;
    color: #00417f;
}

    .btn-login:active {
        border-color: #00417f;
        background-color: #c0dffc;
        color: #00417f;
    }
@media only screen and (max-width: 992px) {
    .main-login {
        flex-direction: column;
    }

    .left-login {
        display: none;
    }

    .right-login {
        background-image: none;
        width: 80vw;
        flex-direction: column;
        justify-content: space-around;
    }

    .left-login-image.logo-mobile {
        display: inherit;
        top: unset;
        width: 100%;
    }

    .logo-desenvolver.logo-mobile {
        display: inherit;
        top: unset;
        width: 30%;
    }

    .left-login-image {
    }

    .card-login {
        width: 100%;
        padding: 20px;
    }
}
