* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

label.error {
    display: none !important;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

form {
    border: 1px solid #c3c3c3;
    padding: 15px;
    width: 320px;
    border-radius: 10px;
    background: #fff;
}
form a{
    margin-left: 60%;
    font-size: 14px;
    text-decoration: none;
    color: black;
}
form a:hover{
    text-decoration: underline;
}
form input {
    width: 100%;
    height: 50px;
    border: 1px solid #c3c3c3;
    border-radius: 5px;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    }

form input.error {
    border-color: red;
    }

    form textarea {
        width: 100%;
        border: 1px solid #c3c3c3;
        border-radius: 5px;
        margin-bottom: 10px;
        padding: 15px;
        display: flex;
        align-items: center;
        line-height: 18px;
    }

    form button {
        height: 50px;
        width: 100%;
        cursor: pointer;
        font-size: 20px;
        border-radius: 10px;
        border: 1px solid black;
        background: #fff;
    }
    form button:hover{
        background: #000;
        color: #fff;
    }
