*{
    margin: 0px;
    padding: 0px;
    font-family: sans-serif;
}

html {
    height: 100%;
}

body {
    color: white;
    height: 100%;
    background: radial-gradient(#ddebff, rgb(0, 115, 255));
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;

    display: flex;
    justify-content: center;
    align-items: center;
}

form {
    height: 475px;
    width: 300px;
    padding: 40px;
    border-radius: 20px;
    background-color: #222831;
    box-shadow: 4px 4px 1px rbga(0,0,0,0.404);

    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;

}

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

input {
    height: 64px;
    width: 200px;
    margin: 15px;
    padding: 0px 25px;
    border-radius: 10px;
    border: none;
    background-color: #373e49;
    box-shadow: 3px 3px 6px rgba(0,0,0,0.212);
    color: white;
    font-size: 20px;
    transition: 0.2s;
}

input:hover {
    background-color: #47505f;
    width: 250px;
}

input:focus {
    outline: none;
    background-color: #47505f;
    width: 250px;
}

input::placeholder {
    color: rgb(159, 161, 190);
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
input:-webkit-autofill:active{
    -webkit-background-origin: text;
    -webkit-text-fill-color: #000000;
    background: #373e49;
}

button {
    height: 64px;
    width: 250px;
    border-radius: 1000px;
    border: none;
    color: white;
    font-family: sans-serif;
    font-size: 22px;
    /**background-color: blue;**/
    background: linear-gradient(to right, rgb(0, 0, 255), blue);
    transition: 0.2s;
}

button:hover {
    width: 300px;
    background: blue;
}

a, a:focus {
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    text-decoration: none;
}

a:hover {
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 22px;
    text-decoration: none;
    transition: 0.2s;}