body {
    background-color: rgb(39, 39, 58);
}

.title {
    font: 75px "Impact";
    text-align: center;
    color: white;
    text-shadow: 2px 2px 30px black;
}
  


.square {
    position: absolute;
    top: 250px;
    left: 50%;
    width: 500px;
    height: 400px;
    transform: translateX(-250px);
    background: linear-gradient(white, grey);
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 90px black;;
}

label {
    font: 65px "Impact";
    margin-top: -10px;
    text-shadow: 4px 4px 4px gray;
}
input[type=password] {
    margin-top: 40px;
    border-radius: 40px;
    border: 5px solid black;
    width: 300px;
    height: 45px;
    font-size: 40px;
    text-align: center;
}

input[type=submit] {
    font-weight: 900;
    background: black;
    font: 20px "Bahnschrift Light";
    text-shadow: 4px 4px 2px black;
    color: white;
    border-radius: 40px;
    margin-top: 80px;
    padding: 25px 100px;
    border: 5px solid black;
    transition: 0.75s background;
    cursor: pointer;
}


input[type=submit]:hover  {
    background: #5B646A;
}

