* {
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "segoe ui", roboto, oxygen, ubuntu, cantarell, "fira sans", "droid sans", "helvetica neue", Arial, sans-serif;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body {
    height: 100vh;
    margin: 0;
    padding: 0;
    background: url(../../../../src/img/bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
}
.login {
    width: 380px;
    background: rgba(255, 255, 255, 1);
    color: #000;
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%,-50%);
    padding: 70px 30px 20px 30px;
    border-radius: 5px;
}
@media screen and (max-width: 750px) {
    .login {
        width: 80%;
    }
}
.login .avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: white;
    position: absolute;
    top: -60px;
    left: calc(50% - 60px);
}
.login h1 {
    margin: 0;
    padding: 0 0 20px;
    text-align: center;
    font-size: 42px;
}
.login p {
    margin: 0;
    padding: 0 0 10px;
    font-weight: bold;
    font-size: 22px;
}
.login input {
    width: 100%;
    margin: 0 0 20px 0;
}
.login input[type="text"], input[type="password"] {
    border: none;
    border-bottom: 1px solid #000;
    background: transparent;
    outline: none;
    height: 40px;
    color: #000;
    font-size: 16px;
}
.login input[type="submit"] {
    border: none;
    background: #ff0908;
    border: 3px solid #ff0908;
    outline: none;
    height: 40px;
    color: #fff;
    font-size: 18px;
    border-radius: 20px;
    transition: all .3s;
}
.login input[type="submit"]:hover {
    cursor: pointer;
    background: #fff;
    color: #000;
}