/* Modal Input Window Styles — extends modal-option-choice base */

.modal-input-content {
    text-align: center;
}

.modal-input-description {
    font-size: 14px;
    color: #666666;
    margin: -10px 0 20px 0;
    line-height: 1.5;
}

.modal-input-field {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.modal-input-field:focus {
    border-color: #1a7f7f;
    box-shadow: 0 0 0 3px rgba(26, 127, 127, 0.12);
}

.modal-input-error {
    font-size: 13px;
    color: #dc2626;
    margin: 8px 0 0 0;
    text-align: left;
}

.modal-input-submit-btn {
    width: 100%;
    margin-top: 16px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    background: #1a7f7f;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
}

.modal-input-submit-btn:hover {
    background: #15706f;
}

.modal-input-submit-btn:active {
    transform: scale(0.98);
}

.modal-input-submit-btn:disabled {
    background: #94a3b8;
    cursor: not-allowed;
}
