body {
    min-height: 100vh;
}

form {
    background-color: gray;
    width: fit-content;
    padding: 50px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

h1 {
    text-align: center;
    margin-bottom: 30px;
    color: white;
    font-size: 40px;
}

.textDiv {
    border-bottom: 2px solid white;
    position: relative;
    margin: 35px 0;
}

.textDiv input {
    background: lightgray;
    border: none;
    outline: none;
    width: 100%;
    color: white;
    height: 30px;
    font-size: 20px;
}

.loginBtn {
    height: 45px;
    width: 100%;
    border: none;
    outline: none;
    font-size: 16px;
}

.loginBtn:hover {
    background-color: orange;
}

.signup {
    color: white;
    margin-top: 45px;
    text-align: center;
}

.signup a {
    color: black;

}