/* CDV Registro & Login — Estilos */
#cdv-reg-wrap, #cdv-login-wrap {
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Segoe UI', system-ui, sans-serif;
    color: #333;
}

.cdv-reg-header {
    text-align: center;
    padding: 30px 20px 20px;
    background: linear-gradient(135deg, #aedff7, #f9c9f2);
    border-radius: 20px;
    margin-bottom: 28px;
}

.cdv-reg-logo { font-size: 48px; margin-bottom: 10px; }
.cdv-reg-header h2 { margin: 0 0 6px; font-size: 26px; color: #222; }
.cdv-reg-header p  { margin: 0; color: #555; font-size: 15px; }

/* Planes */
.cdv-planes-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 28px;
}

.cdv-plan {
    border-radius: 18px;
    padding: 24px;
    border: 2px solid #dde8e5;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,.07);
    transition: transform .2s, box-shadow .2s;
}

.cdv-plan:hover { transform: translateY(-3px); box-shadow: 0 6px 24px rgba(0,0,0,.12); }

.cdv-plan-pro {
    border-color: #7cc5e8;
    background: linear-gradient(135deg, #f0f9ff, #fff);
    position: relative;
}

.cdv-plan-badge {
    display: inline-block;
    background: #f4f7f6;
    color: #555;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.cdv-badge-pro {
    background: linear-gradient(135deg, #7cc5e8, #f9c9f2);
    color: #fff;
}

.cdv-plan-precio {
    font-size: 36px;
    font-weight: 800;
    color: #333;
    margin-bottom: 4px;
}

.cdv-plan-precio span { font-size: 14px; color: #888; font-weight: 400; }
.cdv-plan-nombre { font-size: 14px; color: #666; margin-bottom: 16px; }

.cdv-plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.cdv-plan-features li {
    font-size: 13px;
    padding: 5px 0;
    color: #444;
    border-bottom: 1px solid #f4f7f6;
}

.cdv-plan-features li.cdv-no { color: #bbb; }

.cdv-btn-plan {
    width: 100%;
    padding: 13px;
    border: none;
    border-radius: 25px;
    background: #aedff7;
    color: #333;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
}

.cdv-btn-plan:hover { background: #7cc5e8; color: #fff; }

.cdv-btn-pro {
    background: linear-gradient(135deg, #7cc5e8, #5ab5d8);
    color: #fff;
}

.cdv-btn-pro:hover { background: linear-gradient(135deg, #5ab5d8, #3a9fc8); }

/* Formulario */
.cdv-form-wrap, .cdv-login-form-wrap {
    background: #fff;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,.07);
    border: 1px solid #eee;
}

.cdv-form-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f0f0f0;
}

#cdv-form-plan-label {
    font-weight: 700;
    font-size: 15px;
    color: #333;
}

.cdv-btn-volver {
    background: none;
    border: 1px solid #ddd;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    color: #666;
    transition: all .2s;
}

.cdv-btn-volver:hover { background: #f4f7f6; }

.cdv-field-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.cdv-field {
    margin-bottom: 16px;
}

.cdv-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #444;
    margin-bottom: 6px;
}

.cdv-field input {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #dde8e5;
    border-radius: 10px;
    font-size: 14px;
    outline: none;
    transition: border-color .2s;
    background: #f9fbff;
    box-sizing: border-box;
}

.cdv-field input:focus { border-color: #7cc5e8; background: #fff; }

.cdv-terms {
    margin-bottom: 16px;
    font-size: 13px;
    color: #555;
}

.cdv-terms a { color: #7cc5e8; }

.cdv-remember {
    margin-bottom: 16px;
    font-size: 13px;
    color: #555;
}

.cdv-msg {
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 500;
}

.cdv-msg.error   { background: #fde8e8; color: #c62828; border: 1px solid #f5c6c6; }
.cdv-msg.success { background: #e8f8ee; color: #2a7a3b; border: 1px solid #b8e6c8; }

.cdv-btn-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #7cc5e8, #5ab5d8);
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
    margin-bottom: 16px;
}

.cdv-btn-submit:hover { background: linear-gradient(135deg, #5ab5d8, #3a9fc8); transform: translateY(-1px); }
.cdv-btn-submit:disabled { opacity: .7; cursor: not-allowed; }

.cdv-login-link, .cdv-login-links {
    text-align: center;
    font-size: 13px;
    color: #666;
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cdv-login-link a, .cdv-login-links a { color: #7cc5e8; text-decoration: none; font-weight: 600; }
.cdv-login-link a:hover, .cdv-login-links a:hover { text-decoration: underline; }

@media (max-width: 600px) {
    .cdv-planes-wrap   { grid-template-columns: 1fr; }
    .cdv-field-group   { grid-template-columns: 1fr; }
}
