body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    color: #ddd;
    margin: 8px 16px;
    background: #343436;
    display: flex;
    justify-content: center;
}

.file-input {
    width: 100%;
    position: relative;
}

.file-input>input {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.image-preview {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: white;
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: .5px;
}

.mb {
    margin-bottom: 15px;
}

input[type="text"], textarea {
    display: block;
    background: #fff;
    color: #222;
    padding: 15px 20px;
    border-radius: 10px;
    border: none;
    font-size: 16px;
    font-family: inherit;
    width: calc(100% - 40px);
}

.input-with-buttons>input {
    margin-bottom: 15px;
    background: #fff;
    color: #222;
    padding: 15px 20px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border: none;
    font-size: 16px;
    font-family: inherit;
    flex: 1;
    min-width: 0;
}

.card {
    max-width: 450px;
    padding: 15px 20px 20px;
    border-radius: 16px;
    background: #000;
}

.input-with-buttons {
    display: flex;
    align-items: stretch;
}

.input-with-buttons>button {
    font-family: inherit;
    font-size: 16px;
    margin: 0;
    text-transform: none;
    appearance: none;
    background: #ddd;
    padding: 10px 10px;
    margin-left: 1px;
    cursor: pointer;
    letter-spacing: 2px;
    display: block;
    border: none;
    height: 48px;
}

.input-with-buttons>button:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.input-with-buttons>button:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.check-box>input {
    margin: 0;
    padding: 0;
    width: 24px;
    height: 24px;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

.check-box {
    position: relative;
    padding: 4px 35px;
    font-weight: 400;
    display: inline-block;
    cursor: pointer;
}

.check-box>span::before {
    content: ' ';
    display: block;
    width: 24px;
    height: 24px;
    border-radius: 5px;
    background: #fff;
    position: absolute;
    left: 0;
    top: 0;
}

.check-box>input:checked+span::before {
    background-color: #bf679d !important
}

.check-box>input:checked+span::after {
    content: ' ';
    display: block;
    width: 18px;
    height: 18px;
    border-radius: 5px;
    position: absolute;
    left: 3px;
    top: 3px;
    background: transparent url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='white' d='M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z'/%3E%3C/svg%3E") center center no-repeat;
    background-size: 85% 85%
}

.button:focus-visible,
.check-box>input:focus-visible::before,
.radio-button>input:focus-visible::before,
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 3px #ff6dbd;
}

.input-with-buttons>button:hover {
    background: #bf679d;
    color: #fff;
}

.file-input>input:focus+img {
    box-shadow: 0 0 0 3px #ff6dbd;
}

.button {
    font-family: inherit;
    font-size: inherit;
    line-height: 1.15;
    width: 100%;
    margin: 15px 0 0;
    text-transform: none;
    appearance: none;
    background: 0 0;
    display: block;
    border: solid 3px #bf679d;
    padding: 10px 15px;
    border-radius: 10px;
    color: #bf679d;
    cursor: pointer;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
}

.button:not(:disabled):hover {
    background: #bf679d;
    color: #fff;
    text-decoration: none;
}

.subtext {
    font-size: 0.6em;
}

textarea {
    width: 400px;
    height: 200px;
    resize: none;
}