* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    width: 100%;
    height: 100vh;
    background: orange;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

form {
    display: flex;
    width: 95%;
    max-width: 500px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    background: white;
    padding: 20px 10px;
    border-radius: 10px;
}


h2 {
    margin: 0 0 30px 0;
}

p {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
    margin-bottom: 25px;
}

label {
    margin-bottom: 10px;
    padding: 5px;
}

input {
    background: none;
    border: none;
    outline: none;
    font-size: 14px;
    border-bottom: 1px solid #000;
    padding: 5px;
}

button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    cursor: pointer;

    background: green;
    border: none;
    outline: none;
    color: white;
    font-size: 14px;
    border-radius: 10px;
}

span{
    margin: 25px 0 10px 0;
}

a{
    text-decoration: none;
    color: blue;
    font-size: 16px;
    cursor: pointer;
}