.delete-account-form {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.delete-account-form h1 {
    color: #3e4d4e;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 300;
}

.form-description {
    color: #666;
    margin-bottom: 25px;
    text-align: justify;
    line-height: 1.6;
}

.data-list {
    background-color: #f9f9f9;
    border-left: 4px solid #668d8a;
    padding: 15px 20px;
    margin-bottom: 25px;
    border-radius: 0 5px 5px 0;
}

.data-list p {
    margin-bottom: 10px;
    color: #3e4d4e;
}

.data-list ul {
    margin: 5px 0;
    padding-left: 20px;
}

.data-list li {
    color: #555;
    margin-bottom: 5px;
}

.procedure-steps {
    margin-bottom: 30px;
    color: #555;
}

.procedure-steps p {
    margin-bottom: 10px;
    color: #3e4d4e;
}

.procedure-steps ol {
    margin: 10px 0;
    padding-left: 20px;
}

.procedure-steps li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.warning {
    color: #932626;
    font-weight: 500;
    margin-top: 15px;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: #3e4d4e;
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    box-sizing: border-box;
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: #668d8a;
}

textarea.form-input {
    resize: vertical;
    min-height: 100px;
}

.error-message {
    color: #932626;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

.submit-btn {
    background-color: #668d8a;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 14px 28px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s;
    width: 100%;
    font-weight: 500;
}

.submit-btn:hover {
    background-color: #56716e;
}

.submit-btn:disabled {
    background-color: #d4d4d4;
    cursor: not-allowed;
}

.success-text {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 15px;
    border-radius: 6px;
    text-align: center;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .delete-account-form {
        padding: 20px;
    }

    .delete-account-form h1 {
        font-size: 1.5rem;
    }
}
