main{
    padding-top: 0;    
}
.delete-page {
    padding: 32px 0 80px;
    min-height: 60vh;
}

.container--narrow {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 20px;
}



.delete-page__header {
    text-align: center;
    margin-bottom: 40px;
}

.delete-page__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #ef4444;
    margin-bottom: 24px;
}

.delete-page__title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.2;
}

.delete-page__subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin: 0;
}



.delete-page__content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
}

.delete-page__content h2,
.delete-page__content h3 {
    color: #fff;
    margin: 0 0 12px;
}

.delete-page__content p {
    margin: 0 0 12px;
}

.delete-page__content p:last-child {
    margin-bottom: 0;
}

.delete-page__content a {
    color: #f472b6;
    text-decoration: underline;
    text-underline-offset: 3px;
}



.delete-page__info {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 32px;
}

.delete-page__info-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 20px;
}

.delete-page__info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.delete-page__info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
}

.delete-page__info-list li svg {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 2px;
}

.delete-page__info-list li:last-child {
    color: #ef4444;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.delete-page__info-list li:last-child svg {
    color: #ef4444;
}



.delete-page__form-wrap {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 32px;
}

.delete-page__form-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 8px;
}

.delete-page__form-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    margin: 0 0 28px;
    line-height: 1.6;
}

.delete-page__field {
    margin-bottom: 24px;
}

.delete-page__label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.delete-page__input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.delete-page__input-icon {
    position: absolute;
    left: 14px;
    color: rgba(255, 255, 255, 0.25);
    pointer-events: none;
    z-index: 1;
}

.delete-page__input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 14px 16px 14px 44px;
    font-size: 15px;
    color: #fff;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.delete-page__input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.delete-page__input:focus {
    border-color: #f472b6;
    box-shadow: 0 0 0 3px rgba(244, 114, 182, 0.15);
}

.delete-page__input--error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.delete-page__input--error:focus {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

.delete-page__error {
    font-size: 13px;
    color: #ef4444;
    margin: 8px 0 0;
    display: none;
    align-items: center;
    gap: 4px;
}

.delete-page__help {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    margin: 8px 0 0;
}



.delete-page__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 24px;
    background: #ff6b6b;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, opacity 0.2s;
}
.delete-page__submit span{
    color: #1a1a1a;
}

.delete-page__submit:hover {
   background: #ff8787;
    transform: translateY(-1px);
}

.delete-page__submit:active {
    transform: translateY(0);
}

.delete-page__submit:focus-visible {
    outline: 2px solid #f472b6;
    outline-offset: 2px;
}

.delete-page__submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}


.delete-page__submit .spin {
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}



.delete-page__success {
    text-align: center;
    padding: 20px 0 0;
    outline: none;
}

.delete-page__success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: #22c55e;
    margin-bottom: 20px;
}

.delete-page__success-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
}

.delete-page__success-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin: 0 0 16px;
}

.delete-page__success-text strong {
    color: #f472b6;
    font-weight: 600;
}

.delete-page__success-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
    margin: 0;
}



.delete-page__footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
}

.delete-page__footer a {
    color: #f472b6;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.delete-page__footer a:hover {
    color: #f9a8d4;
}



@media (max-width: 640px) {
    .delete-page {
        padding: 24px 0 60px;
    }

    .delete-page__title {
        font-size: 26px;
    }

    .delete-page__icon,
    .delete-page__success-icon {
        width: 64px;
        height: 64px;
    }

    .delete-page__icon svg,
    .delete-page__success-icon svg {
        width: 36px;
        height: 36px;
    }

    .delete-page__info,
    .delete-page__form-wrap {
        padding: 20px;
    }
}



@media (prefers-reduced-motion: reduce) {
    .delete-page__submit {
        transition: none;
    }

    .delete-page__submit .spin {
        animation: none;
    }
}



@media (forced-colors: active) {
    .delete-page__input {
        border: 1px solid ButtonText;
    }

    .delete-page__submit {
        border: 1px solid ButtonText;
    }
}