.asm-up-wrap {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 24px;
    box-sizing: border-box;
}

.asm-up-card {
    width: 100%;
    max-width: 560px;
    background: #fff;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 18px 60px rgba(18,33,29,.12);
    box-sizing: border-box;
}

.asm-up-card-wide { max-width: 820px; }

.asm-up-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
}

.asm-up-photo-box {
    width: 96px;
    height: 96px;
    border-radius: 999px;
    overflow: hidden;
    background: #f3f6fb;
    border: 4px solid #17bfa9;
    flex: 0 0 96px;
}

.asm-up-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.asm-up-card h2 {
    margin: 0 0 5px;
    font-size: 24px;
    font-weight: 600;
    color: #12211d;
}

.asm-up-email {
    margin: 0;
    color: rgba(18,33,29,.62);
    font-size: 14px;
}

.asm-up-notice {
    margin: 0 0 18px;
    padding: 12px 14px;
    border-radius: 14px;
    font-size: 14px;
}

.asm-up-notice.success { background: rgba(23,191,169,.12); color: #087c6c; }
.asm-up-notice.error { background: rgba(239,68,68,.12); color: #b91c1c; }

.asm-up-grid-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 15px;
}

.asm-up-field { display: flex; flex-direction: column; gap: 7px; }
.asm-up-full { grid-column: 1 / -1; }

.asm-up-field label,
.asm-up-form label {
    font-weight: 600;
    color: #12211d;
    font-size: 13px;
}

.asm-up-field input[type="text"],
.asm-up-field textarea,
.asm-up-form input[type="file"] {
    width: 100%;
    border: 1px solid #d8e1de;
    border-radius: 14px;
    padding: 12px 13px;
    font-size: 14px;
    color: #12211d;
    background: #fbfdfc;
    box-shadow: none;
    outline: none;
    box-sizing: border-box;
}

.asm-up-field input:focus,
.asm-up-field textarea:focus {
    border-color: #17bfa9;
    box-shadow: 0 0 0 3px rgba(23,191,169,.12);
}

.asm-up-field small {
    color: rgba(18,33,29,.55);
    font-size: 12px;
}

.asm-up-actions { display: flex; gap: 12px; align-items: center; }

.asm-up-form button,
.asm-up-delete-form button {
    border: 0;
    border-radius: 14px;
    padding: 13px 18px;
    font-weight: 700;
    cursor: pointer;
    background: #17bfa9;
    color: #fff;
    transition: .18s ease;
}

.asm-up-form button:hover { background: #109c8a; }

.asm-up-delete-form {
    margin-top: 14px;
}

.asm-up-delete-form button {
    background: rgba(239,68,68,.10);
    color: #b91c1c;
}

.asm-up-delete-form button:hover { background: rgba(239,68,68,.18); }

@media (max-width: 720px) {
    .asm-up-wrap { padding: 14px; }
    .asm-up-card { padding: 22px; border-radius: 20px; }
    .asm-up-header { flex-direction: column; text-align: center; }
    .asm-up-grid-form { grid-template-columns: 1fr; }
}
