@import url('https://fonts.googleapis.com/css?family=Montserrat|Poppins&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.bg-img{
    background: url('../img/background_biosync_admin.png');
    height: 100vh;
    background-size: cover;
    background-position: center;
}

.bg-img::after{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,0.4);
}

.content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 999;
    width: 370px;
    text-align: center;
    padding: 30px 32px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: -1px 4px 28px 0px rgba(0,0,0,0.75);
    border-radius: 10px;
}

.content header{
    color: #ffffff;
    font-size: 33px;
    font-weight: 600;
    margin: 0 0 35px 0;
    font-family: 'Poppins', sans-serif;
}

.field{
    position: relative;
    height: 45px;
    width: 100%;
    display: flex;
    background: rgba(255,255,255,0.94);
    border-radius: 10px;
}

.field span{
    color: #222;
    width: 40px;
    line-height: 45px;
    padding: 0 10px;
}

.field input{
    height: 100%;
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: #222;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.space{
    margin-top: 16px;
}

.pass{
    text-align: left;
    margin: 10px 0;
}

.pass a{
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
}

.pass:hover a{
    text-decoration: underline;
}

input[type="submit"]{
    background: linear-gradient(to right, #0000ff 0%, #0000ff 100%);
    border: 1px solid linear-gradient(to right, #000042 0%, #000042 100%);
    color: #fff;
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    border-radius: 10px;
}

input[type="submit"]:hover{
    background: linear-gradient(to left, #000042 0%, #000042 100%);
    border: 2px solid linear-gradient(to right, #3636fd 0%, #3636fd 100%);
}

.login{
    color: #91ff02;
    margin: 20px 0;
    font-family: 'Poppins', sans-serif;
}

.link{
    display: flex;
    cursor: pointer;
    color: #fff;
    margin: 0 0 20px 0;
    text-decoration: none;
}

.voltar, .instagram{
    width: 100%;
    height: 45px;
    line-height: 45px;
    margin-top: 10px;
    margin-left: 10px;
    text-decoration: none;
}

.voltar{
    margin-left: 0px;
    background: #ff0000;
    border: 1px solid #610000;
    border-radius: 10px;
    text-decoration: none;
}

.voltar:hover{
    background: #970000;
    border: 1px solid #ff5454;
    text-decoration: none;
}

.voltar a {
    text-decoration: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #fff;
    text-decoration: none;
}

.voltar a:hover {
    text-decoration: none !important;
}

.voltar a i {
    text-decoration: none;
}

.voltar a span {
    text-decoration: none;
    margin-left: 8px;
}

.link i{
    font-size: 17px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
}

.link span{
    font-size: 15px;
    margin-left: 8px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.signup{
    color: #fff;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
}

/* footer */

.textoFooter {
    font-size: 14px;
    color: #ffffff;
}

@keyframes girar {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
}
  
#rotation {
    animation: girar 3s linear infinite;
}