@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&display=swap');

#Login {
    background-color: white;
}

.Login {
    text-align: center;
    position: relative;
    display: block;
    height: 50px;
}

body {
    margin: 0;
    padding: 0;
    background-position: center;
    font-family: "Fredoka One", cursive;
}

.logo {
    width: 100px;
    height: 100px;
    position: absolute;
    top: -50px;
    left: calc(50% - 50px)
}

.loginBox {
    width: 320px;
    height: 420px;
    background: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    padding: 30px 30px;
}

h1 {
    margin: 20;
    padding: 0 0 20px;
    text-align: center;
    font-size: 22px;
}

.loginBox p {
    margin: 0;
    padding: 0;
    font-weight: bold;
    text-align: center;
}

.loginBox input {
    width: 100%;
    margin-bottom: 20px;
    font-family: "Fredoka One", cursive;
}

.loginBox input[type = "text"], input[type = "password"]{
    border: none;
    border-bottom: 1px solid rgb(0, 0, 0);
    background: transparent;
    outline: none;
    height: 40px;
    color: black;
    font-size: 16px;
}

.loginBox input[type = "button"] {
    border: none;
    outline: none;
    height: 40px;
    background: black;
    color: rgb(255, 255, 255);
    font-size: 18px;
}

.loginBox input[type = "button"]:hover {
    cursor: pointer;
    background: white;
    color: rgb(0, 0, 0);
}

.loginBox a {
    text-decoration: none;
    font-size: 12px;
    line-height: 20px;
    color: black;
}