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

.shell {
    width: 350px;
    padding: 40px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.title {
    font-size: 60px;
    margin-bottom: 30px;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    height: 50px;
    margin: 10px 0;
    box-sizing: border-box;
    color: black;
    border: 1px solid #000;
    background-color: #fff;
    border-radius: 10px;
    padding: 5px;
    font-size: 1rem;
    outline: none;
}

input[type="submit"] {
    width: 30%;
    height: 30px;
    margin: 15px 0;
    color: #fff;
    background-color: #007bff;
    cursor: pointer;
    font-size: 20px;
    letter-spacing: 3px;
    border: none;
    text-align: center;
    align-items: center;
    border-radius: 10px;
}

.footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 20px;
}

.remember {
    display: flex;
    justify-content: center;
    align-items: center;
}

input[type="checkbox"] {
    display: block;
    width: 25px;
    height: 25px;
}

#signUp {
    border: none;
    background-color: #007bff;
    font-size: 18px;
    border-radius: 5px;
    color: #fff;
}