.msg-box.error {
    color: red;
    font-size: 12px;
}
input._error {
    border: 1px solid red;
}
.agree {
    flex-wrap: wrap;
}
.agree span {
    max-width: 89%;
}
.agree .msg-box {
    width: 100%;
    line-height: normal;
    margin-top: -8px;
}
.file-info-container:not(.display-none) {
    display: flex;
    align-items: center;
    gap: 24px;
}
.file-name {
    max-width: min(275px, 50vw);
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.4;
}
.remove-file-btn {
    font-weight: 400;
    font-size: 13px;
    line-height: 1.4;
    color: var(--grey);
    cursor: pointer;
}
.form-progress-bar {
    height: 6px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}
.form-progress-text {
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.25rem;
}
.form-progress-fill {
    height: 100%;
    width: 0%;
    background: var(--pink);
    transition: width 0.15s ease;
}

.general-message-box.message-send .title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}
.general-message-box.message-send .general-message-box__text {
    position: absolute;
    box-shadow: var(--shadow-lg);
    animation: pop .3s var(--ease);
    z-index: 1;
    text-align: center;
    inset: 0;
    margin: auto;
    padding: 32px;
    background-color: #FFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 95vw;
}