.account-ban {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 16px;
    background-color: white;
}

.account-wrapper {
    width: 460px;
    padding: 40px;
    max-width: 80%;
}

.account-title {
    font-size: 2.5em;
    margin: 30px 0px;
    text-align: center;
}

.account-form {
    width: 100%;
}

.account-input-wrapper {
    margin-bottom: 20px;
}

.account-input-wrapper input {
    width: 100%;
    height: 3em;
    line-height: 3em;
    border: 0;
    background: 0 0;
    font-size: 1.75em;
    color: #2d2b24;
    font-weight: 700;
    padding: 0;
    margin: 0;
    border-bottom: 2px solid #d4d0c7;
    outline: 0;
    transition: border .15s ease;
}

.account-input-wrapper input:focus {
    border-bottom-color: black;
    transition-duration: .25s;
}

.account-input-wrapper.gender-wrapper {
    display: flex;
    height: 3em;
    padding: 0.63em 0;
    border-bottom: 2px solid #d4d0c7;
    transition: border .15s ease;
}

.account-input-wrapper.gender-wrapper .title {
    width: 20%;
    font-size: 1.75em;
    color: #cccccc;
    font-weight: 700;
}

.account-input-wrapper.gender-wrapper .options {
    width: 80%;
    display: flex;
    justify-content: space-around;
}

.account-input-wrapper.gender-wrapper .options div,
.account-input-wrapper.gender-wrapper .options div:hover {
    height: 100%;
    width: 33.34%;
    background-color: #7d7d7d;
    color: #fff;
    cursor: pointer;
    text-align: center;
    font-size: 1.75em;
    font-weight: 700;
    letter-spacing: 0.06em;
    overflow: hidden;
    transition: background-color .2s;
}

.account-input-wrapper.gender-wrapper .options div.active {
    background-color: #38362f;
}

.btn-confirm, .btn-confirm:active {
    width: 100%;
    height: 3em;
    line-height: 3em;
    background-color: #38362f;
    color: #fff;
    cursor: pointer;
    font-size: 1.75em;
    margin: 36px 0;
    font-weight: 700;
    letter-spacing: 0.06em;
    overflow: hidden;
    text-align: center;;
    transition: background-color .2s;
}

.btn-confirm:hover {
    background-color: black;
}