
.delete-account-container {
    background-color: #F3FEFF !important;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 70px;
    margin-top: 20px;
}
.delete-account-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: #1a1a1a;
}
.warning-section {
    margin-bottom: 30px;
}
.warning-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    vertical-align: middle;
    background-image: url('../picture/tip.webp');
    background-size: contain;
    background-repeat: no-repeat;
}
.warning-title {
    font-size: 16px;
    font-weight: 600;
    color: #1AADA6 !important;
    margin-bottom: 10px;
}
.warning-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}
.warning-list {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
    padding-left: 20px;
}
.warning-list li {
    margin-bottom: 5px;
}
.form-group {
    margin-bottom: 25px;
}
.form-label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;
}
.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}
.form-input:focus {
    outline: none;
    border-color: #4258ff;
    box-shadow: 0 0 0 3px rgba(66, 88, 255, 0.1);
}
.form-select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23666' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    transition: border-color 0.3s ease;
}
.form-select:focus {
    outline: none;
    border-color: #4258ff;
    box-shadow: 0 0 0 3px rgba(66, 88, 255, 0.1);
}
.verification-group {
    display: flex;
    gap: 10px;
}
.verification-input {
    flex: 1;
}
.verification-btn {
    padding: 12px 20px;
    background-color: #1AADA6 !important;
    border: 1px solid #1AADA6!important;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: white !important;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.verification-btn:hover {
    background-color:#1AADA6;
    border-color: #1AADA6;
}
.confirmation-section {
    background-color: #fff5f5;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
}
.confirmation-text {
    font-size: 14px;
    color: #1AADA6 !important;
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.confirmation-text input[type="checkbox"] {
    margin-top: 2px;
}
.submit-btn {
    width: 18% !important;
    padding: 12px;
    background-color: #1AADA6 !important;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.submit-btn:hover {
    background-color: #ff5252;
}
.submit-btn:disabled {
    background-color: #ffb3b3;
    cursor: not-allowed;
}
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}
.modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.3s ease;
}
.modal-content h3 {
    color: #4caf50;
    margin-bottom: 15px;
}
.modal-content p {
    color: #666;
    margin-bottom: 25px;
}
.modal-content button {
    background-color: #4258ff;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}
.error-message {
    color: #ff5252 !important;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
@media (max-width: 768px) {
    .delete-account-container {
        padding: 20px;
    }
    .verification-group {
        flex-direction: column;
    }
}