body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: whitesmoke;

    display: flex;
    justify-content: center;
    align-items: center;

    height: 100vh;
}


.login-card {

    background-color: white;

    width: 350px;

    padding: 30px;

    border-radius: 15px;

    box-shadow: 0px 5px 15px gray;
}


h1 {
    text-align: center;
    margin-bottom: 25px;
    color: black;
}


label {
    display: block;

    margin-bottom: 5px;

    font-weight: bold;
}


input {

    width: 100%;

    padding: 12px;

    margin-bottom: 15px;

    border: 1px solid lightgray;

    border-radius: 5px;

    box-sizing: border-box;
}


button {

    width: 100%;

    padding: 12px;

    background-color: blue;

    color: white;

    border: none;

    border-radius: 5px;

    font-size: 16px;

    font-weight: bold;

    cursor: pointer;
}


button:hover {

    background-color: blue;

    text-decoration: underline;
}


p {

    text-align: center;

    margin-top: 20px;
}


a {

    color: blue;

    font-weight: bold;

    text-decoration: none;
}


a:hover {

    text-decoration: underline;

}