.roles-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(32, 48, 181, 0.1), rgba(32, 48, 181, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    animation: rolesFloat 3s ease-in-out infinite;
}

@keyframes rolesFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-6px);
    }
}

.roles-label {
    font-weight: 600 !important;
    font-size: 13px !important;
    color: #374151 !important;
    margin-bottom: 10px !important;
    display: flex !important;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.roles-label svg {
    color: var(--primary-color);
}

.roles-select-wrapper {
    position: relative;
}

.roles-select {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    padding-right: 44px !important;
    background: #f9fafb !important;
    cursor: pointer;
}

.roles-select:focus {
    background: #ffffff !important;
    box-shadow: 0 0 0 4px rgba(32, 48, 181, 0.1) !important;
}

.roles-select-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    pointer-events: none;
    transition: all 0.3s ease;
}

.roles-select:focus~.roles-select-icon {
    color: var(--primary-color);
    transform: translateY(-50%) rotate(180deg);
}

.roles-submit-btn {
    height: 50px !important;
    border-radius: 12px !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1628a3 100%) !important;
    border: none !important;
    box-shadow: 0 4px 14px rgba(32, 48, 181, 0.3);
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    overflow: hidden;
}

.roles-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.roles-submit-btn:hover::before {
    left: 100%;
}

.roles-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(32, 48, 181, 0.4) !important;
}

.roles-submit-btn:active {
    transform: translateY(0);
}

.roles-submit-btn svg {
    transition: transform 0.3s ease;
}

.roles-submit-btn:hover svg {
    transform: translateX(4px);
}

/* Fade In Animation */
.roles-select-group,
.roles-submit-btn {
    opacity: 0;
    transform: translateY(12px);
    animation: rolesFadeIn 0.5s ease forwards;
}

.roles-select-group {
    animation-delay: 0.15s;
}

.roles-submit-btn {
    animation-delay: 0.3s;
}

@keyframes rolesFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.destination-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(32, 48, 181, 0.1), rgba(32, 48, 181, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-6px);
    }
}

.destination-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 8px;
}

.destination-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border-radius: 14px;
    border: 2px solid #e5e7eb;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    position: relative;
    overflow: hidden;
    width: 100%;
    font-family: inherit;
}

.destination-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.35s ease;
    border-radius: 12px;
}

.destination-card-lms::before {
    background: linear-gradient(135deg, rgba(32, 48, 181, 0.04), rgba(32, 48, 181, 0.02));
}

.destination-card-sim::before {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.04), rgba(16, 185, 129, 0.02));
}

.destination-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.destination-card:hover::before {
    opacity: 1;
}

.destination-card-lms:hover {
    border-color: var(--primary-color);
}

.destination-card-sim:hover {
    border-color: #10b981;
}

.destination-card:active {
    transform: translateY(-1px) scale(0.99);
}

.destination-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: all 0.35s ease;
}

.destination-card-lms .destination-card-icon {
    background: linear-gradient(135deg, var(--primary-color), #1628a3);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(32, 48, 181, 0.3);
}

.destination-card-sim .destination-card-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
}

.destination-card:hover .destination-card-icon {
    transform: scale(1.08);
}

.destination-card-content {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.destination-card-content h5 {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 4px 0;
    transition: color 0.3s ease;
}

.destination-card-lms:hover .destination-card-content h5 {
    color: var(--primary-color);
}

.destination-card-sim:hover .destination-card-content h5 {
    color: #059669;
}

.destination-card-content p {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
}

.destination-card-arrow {
    color: #d1d5db;
    flex-shrink: 0;
    transition: all 0.35s ease;
    position: relative;
    z-index: 1;
}

.destination-card-lms:hover .destination-card-arrow {
    color: var(--primary-color);
    transform: translateX(4px);
}

.destination-card-sim:hover .destination-card-arrow {
    color: #10b981;
    transform: translateX(4px);
}

/* Entry Animation */
.destination-card {
    opacity: 0;
    transform: translateY(16px);
    animation: cardSlideIn 0.5s ease forwards;
}

.destination-card:nth-child(1) {
    animation-delay: 0.1s;
}

.destination-card:nth-child(2) {
    animation-delay: 0.25s;
}

@keyframes cardSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 480px) {
    .destination-card {
        padding: 16px;
        gap: 12px;
    }

    .destination-card-icon {
        width: 44px;
        height: 44px;
    }

    .destination-card-icon svg {
        width: 22px;
        height: 22px;
    }

    .destination-card-content h5 {
        font-size: 15px;
    }

    .destination-card-content p {
        font-size: 12px;
    }
}

.peserta-hero-card {
    border-radius: 20px;
    background: linear-gradient(135deg, #1e40af 0%, #2030B5 30%, #3b52d9 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: 0 10px 40px rgba(32, 48, 181, 0.25);
}

.peserta-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.peserta-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 36px;
    position: relative;
    z-index: 1;
}

.peserta-hero-left {
    flex: 1;
    min-width: 0;
}

.peserta-greeting-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.peserta-greeting-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    animation: pesertaPulse 2s ease-in-out infinite;
}

@keyframes pesertaPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.3);
    }
}

.peserta-hero-title {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.peserta-hero-name {
    background: linear-gradient(135deg, #93c5fd, #c4b5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.peserta-hero-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 24px 0;
    line-height: 1.6;
    max-width: 480px;
}

.peserta-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.peserta-btn-lms {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: var(--primary-color) !important;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.peserta-btn-lms:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    color: #1628a3 !important;
}

.peserta-btn-profile {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff !important;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none !important;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.peserta-btn-profile:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    color: #ffffff !important;
}

.peserta-hero-right {
    flex-shrink: 0;
    margin-left: 32px;
}

.peserta-hero-illustration {
    position: relative;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.peserta-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.peserta-circle-1 {
    width: 180px;
    height: 180px;
    animation: pesertaSpin 20s linear infinite;
}

.peserta-circle-2 {
    width: 140px;
    height: 140px;
    border-color: rgba(255, 255, 255, 0.15);
    animation: pesertaSpin 15s linear infinite reverse;
}

.peserta-circle-3 {
    width: 100px;
    height: 100px;
    border-color: rgba(255, 255, 255, 0.2);
    animation: pesertaSpin 10s linear infinite;
}

@keyframes pesertaSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.peserta-hero-icon-main {
    color: rgba(255, 255, 255, 0.9);
    animation: pesertaFloat 3s ease-in-out infinite;
}

@keyframes pesertaFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Info Cards */
.peserta-info-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f1f3;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(16px);
    animation: pesertaCardIn 0.5s ease forwards;
}

.peserta-info-card-1 {
    animation-delay: 0.1s;
}

.peserta-info-card-2 {
    animation-delay: 0.2s;
}

.peserta-info-card-3 {
    animation-delay: 0.3s;
}

@keyframes pesertaCardIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.peserta-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 16px 16px 0 0;
}

.peserta-info-card-1::before {
    background: linear-gradient(90deg, var(--primary-color), #6366f1);
}

.peserta-info-card-2::before {
    background: linear-gradient(90deg, #f59e0b, #f97316);
}

.peserta-info-card-3::before {
    background: linear-gradient(90deg, #10b981, #14b8a6);
}

.peserta-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.peserta-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.peserta-info-card-1 .peserta-info-icon {
    background: linear-gradient(135deg, rgba(32, 48, 181, 0.1), rgba(99, 102, 241, 0.1));
    color: var(--primary-color);
}

.peserta-info-card-2 .peserta-info-icon {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(249, 115, 22, 0.1));
    color: #f59e0b;
}

.peserta-info-card-3 .peserta-info-icon {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(20, 184, 166, 0.1));
    color: #10b981;
}

.peserta-info-content {
    flex: 1;
    min-width: 0;
}

.peserta-info-content h6 {
    font-size: 12px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 4px 0;
}

.peserta-info-content p {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.peserta-info-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
}

.peserta-badge-success {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.peserta-badge-info {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

.peserta-badge-primary {
    background: rgba(32, 48, 181, 0.1);
    color: var(--primary-color);
}

.peserta-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
}

/* Quick Access Section */
.peserta-quick-section {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f1f3;
    opacity: 0;
    transform: translateY(16px);
    animation: pesertaCardIn 0.5s ease forwards;
    animation-delay: 0.4s;
}

.peserta-section-title {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.peserta-section-title svg {
    color: var(--primary-color);
}

.peserta-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.peserta-quick-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 16px;
    border-radius: 14px;
    border: 2px solid #f0f1f3;
    background: #fafbfc;
    text-decoration: none !important;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.peserta-quick-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(32, 48, 181, 0.12);
    background: #ffffff;
}

.peserta-quick-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.peserta-quick-item:hover .peserta-quick-icon {
    transform: scale(1.1);
}

.peserta-quick-icon-blue {
    background: linear-gradient(135deg, var(--primary-color), #3b52d9);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(32, 48, 181, 0.3);
}

.peserta-quick-icon-green {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
}

.peserta-quick-icon-orange {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
}

.peserta-quick-icon-red {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(239, 68, 68, 0.3);
}

.peserta-quick-label {
    font-size: 14px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 4px;
}

.peserta-quick-desc {
    font-size: 12px;
    color: #9ca3af;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
    .peserta-hero-right {
        display: none;
    }

    .peserta-hero-content {
        padding: 32px 28px;
    }

    .peserta-quick-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .peserta-hero-content {
        padding: 24px 20px;
    }

    .peserta-hero-title {
        font-size: 22px;
    }

    .peserta-hero-subtitle {
        font-size: 14px;
    }

    .peserta-hero-actions {
        flex-direction: column;
    }

    .peserta-btn-lms,
    .peserta-btn-profile {
        justify-content: center;
    }

    .peserta-quick-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .peserta-quick-item {
        padding: 20px 12px;
    }

    .peserta-info-card {
        flex-wrap: wrap;
    }
}