*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face { font-family : tiktok; src: url('tiktok.ttf');}


body {
    background-color: #f7f7f7;
    font-family: tiktok;
}

.full {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;

}

.center {
    width: 100%;
    max-width: 600px;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    background-color: #ffffff;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,.04);
}



.divtop {
    padding-top: 30px;
}
.divs {
    width: 100%;
    display: flex;
}

.flexCenter {
    align-items: center;
    justify-content: center;
}

.fa-brands {
    font-size: 80px;
}

.inputs {
    flex-direction: column;
    max-width: 400px;
    padding-top: 20px;

}

.span {
    color: #a0a0a0;
    font-weight: bold;
    padding-top: 10px;
}

.input {
    width: 100%;
    outline: 0;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid #a0a0a0;
    color: #000000;
    padding: 15px 10px 15px 52px;
    font-size: 18px;

}

.margin {
    margin-top: 30px;
}


.fa-solid {
    color: #a0a0a0;
    position: absolute;
    margin-right: -40px;
    margin-top: 19px;
}

.div_btn {
    width: 100%;
    margin-top: 50px;
}

#btn {
    width: 100%;
    padding: 16px;
    border: 0;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    cursor:no-drop;
    background-color: #b3b3b3;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.divError {
    margin-top: 10px;
    height: 20px;
}

#msgError {
    color: #ff3b5c;
}

.divImg {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-top: 10px;
}


#avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.6); 


}

.loader {
    width: 25px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 4px solid;
    border-color: #ffffff #ffffff00;
    animation: l1 0.5s infinite;
  }

  @keyframes l1 {
    to{transform: rotate(.5turn)}
  }