
.telaLogin{
    display:flex;
    flex-direction:column;
    justify-content:center;
    background-color: rgba(0, 0, 0, 0.8);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    padding: 7%;
    border-radius: 5%;
    color: white;
    font-size: 1.2rem;
}
input{
    padding: 15px;
    border: none;
    outline: none;
    font-size: 15px;
}

.back{
    background-color: rgba(56,104,145);
    border: black;
    padding: 10px;
    width: 100%;
    border-radius: 5px;
    color: white;
    font-size: 20px;
    text-decoration: none;
}
.back:hover{
    background-color: deepskyblue;
    
    cursor: pointer;
}

.modal-content{
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width:50%;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 15px;
    border-radius: 15px;

}

.modal-title{
    border-bottom: 4px solid white;
}
