* {
    margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
    box-sizing: border-box;
    text-decoration: none;
}

body {
    font-family: 'Inter', 'sans-serif', 'Arial';
}

.container {
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.box {
    height: 400px;
    width: 400px;
}

form {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

form h1 {
    font-size: 28px;
    font-weight: 700;
}

form a {
    font-size: 16px;
    margin-top: 10px;
    font-weight: 700;
    color: #000;
    width: 100%;
    text-align: center;
}

form a:hover {
    color: #4CAF50;
}

input[type="email"], input[type="password"], input[type="text"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-weight: 400;
    font-size: 16px;
}

input[type="submit"]{
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    background-color: #4CAF50;
    color: #fff;
    cursor: pointer;
    font-weight: 700;
    font-size: 18px;
}

input[type="submit"]:hover{
    background-color: #5cf561;
}
