.nua-account .nua-card {
    border: 1px solid #eef0f3;
    border-radius: 10px;
    background: #fff;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

form#nua-account-form {
    width: 100%;
}

.nua-card h2.nua-ttl {
    display: flex;
}

.nua-ttl {
    margin: 0 0 12px
}

.guest .nua-card {
    padding: 50px;
}

label.nua-remember input[type="checkbox"] {
    margin: 0 !important;
    line-height: 1;
    padding-bottom: 0;
}

button.nua-submit.nua-btn {
    width: 100%;
    padding: 14px !important;
}

.nua-card h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.nua-user img {
    width: 43px;
    border-radius: 50%;
    border: 3px solid #eee;
}

.guest .nua-card {
    padding: 50px;
}
.nua-msg {
    margin-top: 20px !important;
}
.nua-card.logint {
    display: flex;
    align-content: center;
    align-items: center;
}

.nua-form-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 12px
}

.nua-form-label {
    width: 140px;
    min-width: 140px;
    color: #475569;
    padding-top: 9px
}

.nua-form-control {
    flex: 1
}

.nua-input,
.nua-textarea {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 7px;
    padding: 10px 12px;
    outline: none
}

.nua-input:focus,
.nua-textarea:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, .14)
}

.nua-actions {
    display: flex;
    gap: 10px;
    align-items: center
}

.nua-msg.ok {
    color: #16a34a
}

.nua-msg.err {
    color: #dc2626
}

.nua-avatar-line {
    display: flex;
    gap: 10px;
    align-items: center;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.nua-avatar-box {
    position: relative;
    width: 90px;
    height: 90px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    background: #fff
}

.nua-avatar-box img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.nua-avatar-remove {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background: #fff;
    cursor: pointer;
    display: none
}

.nua-avatar-line[data-has-avatar="1"] .nua-avatar-remove {
    display: block
}

.file-btn input[type="file"] {
    display: none
}

@media(max-width:720px) {
    .nua-form-row {
        flex-direction: column
    }

    .nua-form-label {
        width: auto;
        min-width: 0;
        padding-top: 0
    }
}