.loginBox {
    position: absolute;
    top: 42%;
    left: 90%;
    transform: translate(-90%, -42%);
    width: 350px;
    min-height: 200px;
    background: #fff;
    border-radius: 5px;
    padding: 40px;
    /* box-sizing: border-box;
    box-shadow: 5px 5px 5px 5px whitesmoke;
    border: 1px solid whitesmoke; */
}


.user {
    margin: 0 auto;
    display: block;
    margin-bottom: 20px
}



.loginBox input {
    width: 100%;
    margin-bottom: 20px
}

.loginBox input[type="text"],
.loginBox input[type="password"] {
    border: none;
    border-bottom: 1px solid #262626;
    height: 40px;
    background: transparent;
    font-size: 16px;
    padding-left: 20px;
    box-sizing: border-box
}

.loginBox input[type="submit"] {
    border: none;
    outline: none;
    height: 40px;
    font-size: 16px;
    background: #59238F;
    color: #fff;
    border-radius: 20px;
    cursor: pointer
}

.loginBox a {
    color: #262626;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    display: block
}

a:hover {
    color: #00ffff
}

p {
    color: #0000ff
}

main {
    min-height: 95vh;
    background: linear-gradient(to right, lightgrey, rgb(39, 38, 38));
    margin-top: 0%;
}