/* ===== Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  min-height: 100vh;
     background-color: transparent;
    background-image: linear-gradient(135deg, #011164 0%, #000000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}

.elemento{
	position:absolute;left:0;right:0;bottom:0;
	fill: #fff;
	transform: rotate(180deg);
	
	&& svg{
		object-fit: cover;
		width:100%;height: 104px;		
	}
}

.login-container {
  width: 100%;
  max-width: 486px;
    padding: 45px;
}

.login-box {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  text-align: center;
  && .logo{
	  width:60%
  }
}

.login-box h1 {
  font-size: 22px;
    margin-bottom: 10px;
    margin-top: 1.5rem;
}

.login-box p {
  font-size: 14px;
  margin-bottom: 20px;
  color: #bbb;
}

.login-box form {
  display: flex;
  flex-direction: column;
}

.login-box input {
     background: #e9e9e982;
    border: none;
    padding: 12px 15px;
    border-radius: 5px;
    color: #000;
    margin-bottom: 15px;
    font-size: 14px;
    border: solid 1px #000;
}

.login-box input:focus {
  outline: none;
  background: #33333345;
}

.login-box button {
  background-color: rgb(192, 80, 77);
	color: #fff;
	text-transform:uppercase;
    padding:  10px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
	transition:all .4s linear;
	border:0;
	font-size:23px
}

.login-box button:hover {
   background-color: rgb(228 99 96)
}

.login-box .forgot {
  display: inline-block;
  margin-top: 15px;
  font-size: 12px;
  color: #2196F3;
  text-decoration: none;
}

.login-box .forgot:hover {
  text-decoration: underline;
}


@media (min-width:1920px){
	.login-container {
    width: 100%;
    max-width: 602px;
    padding:100px 51px;
}
.login-box {
    background: #ffffff;
    padding: 60px 58px;
}
.login-box input {
    padding:16px 15px;
}

}

@media (max-width:991px){
	.elemento {
    display:none;
}
}

@media (max-width:400px){
	.login-container {
		padding: 22px;
	}
}