/**
*
* DSafeTech
*
* CSS referente aos elementos do login
* 
* @author DSafeTech
*
**/

@import url('https://fonts.googleapis.com/css2?family=Lobster&family=Montserrat:ital,wght@0,300;1,600&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
	justify-content: center;
    width: 100%;
    height: 100vh;
    max-height: 713px;
    display: flex;
}

/* Div Principal */
.form {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 9rem 2rem ;
}

/* Tag de formulário */


form{
    width: 100%;
}
/* Imagem principal */

.imagem-principal {
    display: none;
    width: 50%;
    height: 100%;
    align-items: center;
    padding: 1rem;
}

.foto-barragem {
    width: 100%;
    height: 100%;
    border-radius: 30px;
	margin: auto;
}

/* Logo DsafeTech Fonntes */

.logo {
	display: flex;
    justify-content: space-around;
    align-items: center;
}

.logo-imagem {
    width: 8rem;
}

/* texto "Login" */

.header-text {
    font-size: 2.5rem;
    margin-top: 4rem;
    margin-bottom: 2rem;
}

/* Usuario e senha */

.input-group {
    display: block;
    padding: 1rem 0;
}

.input-box {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.1rem;
}

.input-box-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000000c0;
}

.input-login {
    margin: 0.8rem 0;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    box-shadow: 1px 1px 6px #0000001c;
}

.input-loginr {
    background-color: #eeeeee75;
}

.input-login:focus-visible {
    outline: 2px solid #69d969;
}

/*Botão de logar */

.login {
    display: flex;
    align-items: center;
}

.login-button {
    border: none;
    background-color: #69d969;
    padding: 0.60rem 5rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    width: 100%;
    color: #FFF;
    
}

.login-button:hover {
    background-color: #9ac39b;
}

/* .login-button {
    display: flex;
    text-decoration: none;
    font-weight: 900;
    color: #fff;
    width: 100%;
} */

@media screen and (min-width: 1441px) {
   
    .container{
        padding: 2rem 0;
    }

    .form {
        padding: 2rem ;
        width: 50%;

    }

    form{
        width: 80% ;
    }
    
    .login-button {
        display: flex;
        justify-content: center;
        align-items: center; 
    
    }

    .imagem-principal {
        display: flex;
        width: 500px;
        height: 100%;
        align-items: center;
        padding: 1rem;
        background-image: url('../img/login/barragem-de-sobradinho.png');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        border-radius: 10px;
        
    }
    
    .foto-barragem {
        width: 100%;
        height: 100%;
        border-radius: 30px;
        margin: auto;
    }
    
}

@media screen and (min-width: 960px)  and (max-width: 1440px) {
    .container{
        padding: 2rem 0;
    }

    .form {
        padding: 2rem ;
        width: 50%;

    }

    form{
        width: 80% ;
    }
    
    .login-button {
        display: flex;
        justify-content: center;
        align-items: center; 
    
    }

    .imagem-principal {
        display: flex;
        width: 400px;
        height: 100%;
        align-items: center;
        padding: 1rem;
        background-image: url('../img/login/barragem-de-sobradinho.png');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        border-radius: 10px;
        
    }
    
    .foto-barragem {
        width: 100%;
        height: 100%;
        border-radius: 30px;
        margin: auto;
    }

    .input-login{
        height: 40px;
        font-size: 0.9rem;
    }

    .input-login::placeholder{
        font-size: 0.9rem;
    }

    .input-box-text{
        font-size: 1rem;
    }

    .header-text{
        font-size: 1.75rem;
        margin:0;
        margin: 2rem 0 1rem 0 ;
    }

    button#btnLogin{
        height: 40px;
    }

    .logo-imagem{
        width: 100px;
    }

    
}
