body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #1f1109;
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

.card {
    background: #ffffff;
    width: 420px;
    border-radius: 40px;
    padding: 40px 30px 50px;
    position: relative;
}

.card:before,
.card:after {
    content: "";
    position: absolute;
    background: #ffffff;
    width: 60px;
    height: 20px;
    border-radius: 20px;
    z-index: -1;
}

.card:before {
    right: -20px;
    top: 120px;
}

.card:after {
    left: -20px;
    bottom: 100px;
}

h2 {
    font-size: 26px;
    margin-bottom: 30px;
    font-weight: 600;
}

p {
    font-size: 16px;
    margin-bottom: 20px;
    text-align: justify;
}

.input {
    width: 90%;
    padding: 16px;
    margin-bottom: 16px;
    background: #e9f0f7;
    border: none;
    border-radius: 30px;
    font-size: 14px;
}

textarea {
    width: 100%;
    height: 120px;
    padding: 16px;
    background: #e9f0f7;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    resize: none;
    margin-bottom: 20px;
}

label {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-bottom: 10px;
}

label input {
    margin-right: 10px;
}

button {
    margin-top: 10px;
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 40px;
    background: linear-gradient(0deg, #62493c, #26140a);
    color: #ffffff;
    font-size: 16px;
}