@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');
*{
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    font-family: 'Montserrat', sans-serif !important;
}


html, body{
    width:100%;
    height:100%;
    margin:0;
    overflow:hidden;
}

a, button{
    cursor:pointer;
}

.container-login{
  width: 100%;
  margin: auto;
  display: flex;
  height: 100%;
  position: relative;
  z-index: 5;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to left, #2c4766, #2c4766, #2c4766, #313131);
}

.box-login{
    width: 100%;
    height: 70vh;
    position: absolute;
    padding: 32px 0;
    top: 15%;
    border: 1px solid whitesmoke;
    border-radius: 12px;
    background: white;
    max-width: 500px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    background:rgba(0, 0, 0, 0.5);

}
.logo-dortech{
    width:100%;
    display: flex;
    justify-content: center;
    align-items:center;
    flex-direction: column;
}
.logo-dortech img{
    width:180px;
}
.logo-dortech span{
  color:white;
  font-weight:600;
  padding:12px 0;
}
.box-login form{
    display:flex;
    justify-content:center;
    flex-direction:column;
    height:100%;
    padding:0 32px;
}

label{
    padding:10px 0;
    display:flex;
    flex-direction: column;
}
label span{
  padding:12px 0;
  color:white;
  font-weight:700;
}

label input{
  outline: none;
  border-radius: 5px;
  width: 100%;
  padding: 8px 1rem;
  transition: .5s;
  font-size: 16px;
  background: transparent;
  color: white;
  border: 1px solid lightgray;
}
@media only screen and (max-width:600px){
    label input{
        width:350px;
        font-size:16px;
    }
}


label button{
    border:none;
    outline:none;
    background-color: white;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px, rgba(17, 17, 26, 0.1) 0px 24px 80px;
    color:black;
    width:100%;
    min-width:300px;
    font-weight:bold;
    border-radius:5px;
    padding:12px 1rem;
    transition:.5s;
}
label button:hover{
    background: gray;
    color:white;
}

.forget{
    
    text-align: center;
    margin-top: 16px;
}
.forget a{
    color: white;
}
.error{
    color: white;
    margin: 0;
}