* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
body{
    background-image:url("/assets/adelphos/adelphos-fundo.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
main{
    display: flex;
    justify-content: center;
    align-items:center;
    min-height: 100vh;
    width: 100%;
}
.login{
   width: 390px;
   background-color: #333;
   border-radius: 10px;
   padding: 77px 55px 33px 55px;
   box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.2);
   overflow:hidden;
}
form{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.title {
    display: block;
    font-size: 30px;
    color: azure;
    line-height: 1.2;
    text-align: center;
}
form a {
    transition: .3s;
}
form a:hover {
    transform:scale(0.95);
}
img{
    width: 90px;
    padding-top: 10px;
}
.line-input{
    width: 100%;
    position: relative;
    border-bottom: 2px solid #adadad;
    margin-bottom: 37px;
 }
 .line-input:hover{
    border-image: -webkit-linear-gradient(to left, #21d4fd, #b721ff);
    border-image:-o-linear-gradient(to left, #21d4fd, #b721ff);
    border-image: -moz-linear-gradient(to left, #21d4fd, #b721ff);
    border-image: linear-gradient(to left, #21d4fd, #b721ff);
    border-image-slice: 1;
 }

 input{
    font-size: 15px;
    color: #fff;
    line-height: 1.2;
    border: none;
    display: block;
    width: 100%;
    height: 45px;
    background-color: transparent;
    padding: 0 5px;
    cursor:auto;
    
 }
input::placeholder{
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    color: #adadad;
}
 
input:focus{
    box-shadow: 0 0 0 0;
    outline: 0;
}

input:focus::placeholder{
    color: transparent;
}

button{
    margin-top: 15px;
    font-size: 15px;
    border: none;
    border-radius: 10px;
    color: #fff;
    line-height: 1.2;
    text-transform: uppercase;

    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;


    background: -webkit-linear-gradient(to left, #21d4fd, #b721ff);
    background: -o-linear-gradient(to left, #21d4fd, #b721ff);
    background: -moz-linear-gradient(to left, #21d4fd, #b721ff);
    background: linear-gradient(to left, #21d4fd, #b721ff);
    transition: .3s;
}

button:hover{
    cursor: pointer;
    transform: scale(1.01);
}
.text-link{
    display: flex;
    justify-content: center;
    align-items: center;
    
    margin-top: 50px;
}
.text-link span{
    font-size: 14px;
    color: #adadad;
    padding-right: 5px;
    line-height: 1.5;
    text-decoration: none;
}
    .text-link a{
        font-size: 14px;
    color: #6a7dfe;
    line-height: 1.5;
    text-decoration: none;
    }
    .text-link a:hover{
       cursor: pointer;
       transform: none;
    }