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

    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}


.signup-box {
    background-color: white;
    width: 350px;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 5px 15px gray;
}


h1 {
    text-align: center;
    color: black;
}


label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
}


input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;

    border: 1px solid lightgray;
    border-radius: 5px;

    box-sizing: border-box;
}


button {
    width: 100%;
    margin-top: 20px;

    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;
}