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

body {
    background-color: #f0f1f8;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.box {
    background-color: #fff;
    margin: 100px auto;
    width: 400px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.24);
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 24px;

    input,
    select,
    button {
        width: 100%;
        margin-bottom: 10px;
        padding: 10px;
        border-radius: 8px;
        border: none;
        outline: none;
        box-shadow: 0 0 20px rgb(224, 224, 224);
    }

    h1 {
        margin-bottom: 20px;
    }

    >button {
        margin-top: 10px;
        background-color: #4e90fb;
        color: #f0f1f8;
        cursor: pointer;
    }

    >a {
        width: 100%;
        padding: 10px;
        margin-top: 10px;
        border-radius: 8px;
        background-color: #474747;
        color: #f0f1f8;
        cursor: pointer;
        text-align: center;
        text-decoration: none;
    }
}