* {margin:0px; padding: 0px; transition: 0.25s;}
body{
    background-color: #1e1e1e;
    font-family: 'Work Sans';
}
  
@font-face {
    font-family: 'Work Sans';
    src: url(/fonts/WorkSans-VariableFont_wght.ttf);
  }

.container{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.account{
    width: 580px;
    height: 330px;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 14px;
    font-weight: 600;
}

.account-header{
    color: #181818;
}

.center{
    display: flex;
    flex-direction: column;
    align-items: center;
}

input[name=login]{
    margin-top: 30px;
    height: 30px;
    width: 250px;
    border: 0px;
    border-bottom: 1px solid #181818;
    background-color: #ffffff;
}

input[name=login]:focus, input[name=password]:focus{
    outline: none;
}

input[name=login]::placeholder, input[name=password]::placeholder{
    color: #181818;
}

input[name=password]{
    margin-top: 20px;
    height: 30px;
    width: 250px;
    border: 0px;
    border-bottom: 1px solid #181818;
    background-color: #ffffff;
}

input[type=submit]{
    width: 130px;
    height: 45px;
    margin-top: 35px;
    border: 0px;
    background-color: #181818;
    color: #ffffff;
}

input[type=submit]:hover{
    width: 160px;
    cursor: pointer;
}

.errorTop{
    margin-top: 10px;
    margin-bottom: -26px;
}

.links{
    width: 450px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}

.links a{
    color: #181818;
    text-decoration: none;
    line-height: 25px;
}

.links a:hover{
    margin-left: 10px;
}