/* ===== Panel pendaftaran (register) ===== */
.register-contact-card {
    border: 1px solid #e3e6f0;
    border-radius: 1rem;
    padding: 1.75rem 1.5rem 1.5rem;
    background: #fff;
    box-shadow: 0 .35rem 1.5rem rgba(34, 74, 190, .06);
}

.register-contact-icon {
    width: 64px;
    height: 64px;
    margin: -3rem auto 1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 .5rem 1rem rgba(34, 74, 190, .25);
}

.register-contact-lead {
    font-size: .9rem;
    color: #6e707e;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

/* Tombol kanal kontak (WA / Telegram) */
.register-channel {
    display: flex;
    align-items: center;
    gap: .9rem;
    padding: .85rem 1rem;
    border-radius: .75rem;
    margin-bottom: .85rem;
    color: #fff;
    text-decoration: none;
    transition: transform .12s ease, box-shadow .12s ease, filter .12s ease;
}
.register-channel:hover {
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    filter: brightness(1.03);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .12);
}

.register-channel-wa { background: linear-gradient(135deg, #25d366 0%, #128c7e 100%); }
.register-channel-tg { background: linear-gradient(135deg, #2aabee 0%, #229ed9 100%); }

.register-channel-icon {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

.register-channel-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    text-align: left;
}
.register-channel-label {
    font-size: .8rem;
    opacity: .9;
}
.register-channel-value {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: .3px;
}

.register-channel-arrow {
    flex: 0 0 auto;
    opacity: .8;
    font-size: .85rem;
}

.register-contact-note {
    text-align: center;
    font-size: .8rem;
    color: #858796;
    margin-top: 1rem;
}
.register-contact-note i { color: #4e73df; }
