/*.delete-form-area-div{
    min-height: 500px;
    background-color: #FEF9F4;
    border-radius: 20px;
}*/
.delete-container {
    background-color: #FEF9F4;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  /*  max-width: 600px;*/
    width: 100%;
    margin-top: 20px;
}

.delete-title {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e1e1e1;
    border-radius: 4px;
    font-size: 16px;
    color: #333;
    box-sizing: border-box;
    margin-bottom: 5px;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #F69501;
}

.form-label {
    display: block;
    color: #666;
    font-size: 14px;
    margin-top: 5px;
}

.verify-container {
    position: relative;
    width: 100%;
}

.verify-input {
    width: 100%;
    padding-right: 120px; /* 为验证码按钮预留空间 */
}

.captcha-btn {
    background-color: #F69501;
    color: white;
    border: none;
    padding: 0 15px;
    border-radius: 0 4px 4px 0;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: absolute;
    right: 20px;
    top: 10%;
    height: 70%;
}

.captcha-btn:hover {
    background-color: #E58A00;
}

.submit-btn {
    background-color: #F69501;
    color: white;
    border: none;
    padding: 7px 60px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    border-color: #F69501;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(246, 149, 1, 0.4);
}

/* 成功弹框样式 */
.success-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 30px;
    text-align: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    max-width: 400px;
    width: 90%;
}

.success-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #F69501;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: pulse 1s ease-in-out;
}

.success-icon::before {
    content: "✓";
    font-size: 40px;
    color: white;
    font-weight: bold;
}

@keyframes pulse {
    0% { transform: scale(0.8); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

.success-popup h3 {
    color: #333;
    margin: 0 0 15px;
    font-size: 24px;
    font-weight: 600;
}

.success-popup p {
    color: #666;
    margin: 0 0 25px;
    font-size: 16px;
    line-height: 1.5;
}

.success-popup button {
    background: #F69501;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(246, 149, 1, 0.3);
}

.success-popup button:hover {
    background: #E58A00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(246, 149, 1, 0.4);
}

/* 遮罩层样式 */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.overlay.show {
    opacity: 1;
    visibility: visible;
}