* {
    box-sizing: border-box
;
}

body {
    margin: 0;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    font-family: sans-serif;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(233, 232, 240, 0.979);
    background-color: rgba(15, 10, 10, 0.836);
}

.login-container {
    width: 400px;
    height: 600px;
    padding: 60px 35px 35px 35px;
    border-radius: 100px;
    background-color: rgba(0, 0, 0, 0.76);
    box-shadow: 13px 13px 20px rgba(37, 20, 20, 0.877),
    -13px -13px 20px rgba(231, 214, 214, 0.637);

}

.logo {
    background: url(img/icon.png);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto;
    box-shadow: 0px 0px 2px rgb(0, 0, 0),
    0px 0px 0px 5px #ecf0f3,
    8px 8px 15px rgba(255, 238, 0, 0.582),
    -8px -8px 15px rgba(247, 247, 247, 0.932);
    transform: .7s;
    transition: .7s;
}

.title {
    text-align: center;
    font-size: 35px;
    padding-top: 24px;
    letter-spacing: 0.5px;
    transition: .7s;
}

.fields {
    width: 100%;
    padding: 75px 5px 5px 5px;
}

.username,
.password {
    margin-bottom: 30px;
    border-radius: 25px;
    box-shadow: inset 8px 8px 8px rgba(253, 253, 253, 0.301),
    inset -8px -8px 8px rgba(253, 253, 253, 0.445);
}

.fields i {
    height: 22px;
    margin: 0 10px -3px 25px;
}

.fields input {
    border: none;
    outline: none;
    background: none;
    font-size: 18px;
    color: #555;
    padding: 20px 10px 20px 5px;
}

.login-button {
    outline: none;
    border: none;
    cursor: pointer;
    font-family: sans-serif;
    width: 100%;
    height: 40px;
    border-radius: 30px;
    font-size: 23px;
    font-weight: bold;
    color: rgb(255, 255, 255);
    text-align: center;
    background: rgba(219, 20, 20, 0.8);
    box-shadow: 3px 3px 8px #b1b1b1,
    -3px -3px 8px white;
    transition: .7s;
}

.login-button:hover {
    background-color: rgba(127, 127, 127, 0.8);
}

.login-button:active {
    background-color: #1da88a;
}

.link {
    padding-top: 20px;
    text-align: center;
}

.link a {

    text-decoration: none;
    color: rgba(243, 230, 230, 0.61);
    font-size: 12px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    border: 1px  white;
    -webkit-text-fill-color: white;
    -webkit-box-shadow: 0 0 0px 1000px #000 inset;
    transition: background-color 50000s ease-in-out 0s;
    box-shadow: inset 8px 8px 8px rgba(253, 253, 253, 0.301),
    inset -8px -8px 8px rgba(253, 253, 253, 0.445);
}
