html,
body {
    padding: 0;
    margin: 0;
}

.content {
    width: 100%;
    max-width: 1140px;
}

h2 {
    margin: 0;
    font-size: 2rem;
    font-family: "eir-bold", sans-serif;
    color: #493553;
}

.container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 40px;
    box-sizing: border-box;
    font-family: "GT Walsheim Regular", sans-serif;
}

.container-inner {
    width: 100%;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container-inner:has(.payment) > p {
    text-align: center;
    color: #493553;
}

.payment-info {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-info h3 {
    margin: 0;
}

.payment-info .edit {
    text-decoration: underline;
    cursor: pointer;
    color: #892ba0;
}

.payment {
    width: 100%;
    max-width: 600px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.group {
    width: 100%;
    display: flex;
    flex-direction: column;
}

label {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 10px;
    margin: 0;
    font-size: 16px;
    color: #323435;
}

input,
select {
    color: #000000;
    background-color: #fff;
    border: 2px solid #d0d0d0;
    border-radius: 4px;
    font-family: "GT Walsheim Regular", sans-serif;
    padding: 12px;
    box-sizing: border-box;
    font-size: 20px;
    transition: 0.3s;
}

input:focus,
select:focus {
    border-color: #892ba0;
    box-shadow: inset 0px 0px 0px 2px #892ba0;
}

label > .input {
    display: flex;
    align-items: center;
    gap: 15px;
}

label > .input,
label > input,
label > select {
    width: 100%;
    height: 53px;
}

label > .input > input,
label > .input > select {
    width: 100%;
    height: 100%;
}

label > .input > input:nth-child(1),
label > .input > select:nth-child(1) {
    width: 30%;
}

.container button {
    width: 100%;
    max-width: 350px;
    height: 52px;
    font-family: "eir-medium", sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #470a68;
    text-decoration: none;
    background: #ffffff;
    border: 2px solid #d111c9;
    border-radius: 50px;
    padding: 5px 20px;
    box-sizing: border-box;
    cursor: pointer;
    margin-top: 30px;
    transition: 0.3s;
}

button:hover {
    background: #d111c9;
    color: #ffffff;
}

button + h6 {
    font-size: 14px;
    padding: 5px 0;
    margin: 20px 0 0 0;
}

label:has(input[type="checkbox"]) {
    display: flex;
    align-items: center;
    flex-direction: row;
}

.custom-checkbox {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #aaa;
    border-radius: 6px;
    padding: 8px;
    box-sizing: border-box;
}

input[type="checkbox"]:checked + .custom-checkbox .checked-state {
    background-color: #892ba0;
}

.custom-checkbox .checked-state {
    width: 100%;
    height: 100%;
    background-color: transparent;
    border-radius: 6px;
    transition: 0.3s;
}

.hint {
    position: absolute;
    top: 100%;
    font-size: 0.813rem;
    color: #888;
}

.centered {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
