.box {
    border-radius: 6px;
    background-color: #ffffff;
    z-index: 9;
    height: 1200px;
    margin-top: -400px;
    position: relative;
    box-shadow: 0px 10px 42px 1px rgba(0, 0, 0, 0.08);
    margin-bottom: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.box h1 {
    font-size: 24px;
    margin-bottom: 20px;
}

.box p {
    color: #787878;
    margin-bottom: 30px;
}

.box > div,
.box > input,
.box > textarea {
    width: 450px;
}
.box > input:focus,
.box > textarea:focus {
    border-color: #278be8;
}

.label {
    margin: 30px 0px 10px;
}

.label:not([data-not])::before {
    content: "*";
    color: #e83323;
    margin-right: 5px;
}

.check {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.check label {
    display: flex;
    align-items: center;
    gap: 5px;
}

.check label:last-child {
    width: 250px;
}


input,
textarea {
    border: 1px solid #c3c5cb;
    border-radius: 6px;
    padding: 4px 10px;
    line-height: 24px;
}

textarea {
    resize: vertical;
    height: 100px;
}

.box button {
    width: 450px;
    margin-top: 50px;
}