* {
    margin:0;
    padding:0;
}
       
body {
    width: 100vw;
    height: 100vh;
    background-color: black;
    font-family: Assistant;
    font-weight: 200;
}

.form-wrapper{
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1.login_title {
    color: white;
    font-size: clamp(40px, 10vw, 60px);
    font-weight: 400;
}

p.error_msg {
    color: red;
    font-size: 20px;
    font-weight: 200;
}
       
fieldset {
    letter-spacing: 1px;
    text-transform: uppercase;
    width: min(8vw, 300px);
    padding: 60px 60px 50px 60px;
    text-align: center;
    border: none;
}

input {
    transition: 0.5s;
    width: clamp(200px, 12vw, 300px);
    padding: 10px;
}

input:not([type='submit']) {
    color: white;
    background-color: rgba(150, 150, 150, 0);
    margin-bottom: 30px;
    border: 0;
    outline: 0;
    border-bottom: 2px solid white;
}

input:not([type='submit']):hover {
    border-bottom: 2px solid orange;
}

input[type=submit] {
    margin-top: 20px;
    background: rgb(70, 70, 70); 
    letter-spacing: 2px;
    border: 2px solid rgba(0, 0, 0, 0);
    border-radius: 5px;
    cursor: pointer; 
}

input[type=submit]:hover {
    border: 2px solid orange;
    background: rgb(100, 100, 100);
}

#login_home_button {
    position: fixed;
    left: 30px;
    top: 30px;
    text-decoration: none;
}

#login_home_icon {
    padding: 10px;
    width: 40px;
    height: 40px;
    border: 2px solid white;
    border-radius: 50%;
    transition: 0.3s;
}

#login_home_icon:hover {
    border: 2px solid orange;
}