/* Card general */
.mpd-card {
    max-width: 640px;
    margin: 40px auto;
    padding: 32px 28px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.35);
}

/* Centrare container pe pagina de adeziune */
.mpd-wizard-wrapper {
    min-height: 60vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 16px;
}

/* Titlu si subtitlu */
.mpd-card-title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
    color: #0f172a;
}

.mpd-step-subtitle {
    text-align: center;
    font-size: 14px;
    color: #64748b;
    margin-bottom: 24px;
}

/* Input telefon */
.mpd-form-row {
    margin-bottom: 20px;
}

.mpd-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #0f172a;
}

.mpd-input {
    width: 100%;
    box-sizing: border-box;
    border-radius: 12px;
    border: 1px solid #cbd5e1;
    padding: 10px 12px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    background-color: #f8fafc;
}

.mpd-input:focus {
    border-color: #0f766e;
    box-shadow: 0 0 0 1px rgba(15, 118, 110, 0.3);
    background-color: #ffffff;
}

.mpd-input-error {
    border-color: #dc2626 !important;
}

/* intl-tel-input integration */
.mpd-phone-input {
    padding-left: 52px !important; /* loc pt steag & prefix */
}

.iti {
    width: 100%;
}

.iti__selected-flag {
    border-radius: 12px 0 0 12px;
}

/* Buton */
.mpd-form-actions {
    margin-top: 12px;
    display: flex;
    justify-content: flex-start;
}

.mpd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 10px 22px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: background-color 0.15s ease, box-shadow 0.15s ease, transform 0.05s ease;
}

.mpd-btn-primary {
    background: #0f766e;
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(15, 118, 110, 0.3);
}

.mpd-btn-primary:hover {
    background: #115e59;
}

.mpd-btn-primary:active {
    transform: translateY(1px);
    box-shadow: 0 8px 18px rgba(15, 118, 110, 0.3);
}

/* Mesaje */
.mpd-alert {
    border-radius: 12px;
    padding: 10px 14px;
    margin-bottom: 16px;
    font-size: 14px;
}

.mpd-alert-error {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.mpd-alert-success {
    background: #ecfdf3;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.mpd-phone-help {
    font-size: 12px;
    color: #94a3b8;
    margin-top: 10px;
}

/* Responsiv */
@media (max-width: 640px) {
    .mpd-card {
        margin: 24px auto;
        padding: 20px 18px;
        border-radius: 16px;
    }

    .mpd-card-title {
        font-size: 20px;
    }
}
// JavaScript Document
