/* ==================================================
   MORPHEUS VIII
   REGISTRATION PORTAL
   PART 1 - BASE
================================================== */

/* ==================================================
   VARIABLES
================================================== */

:root{

    --bg:#02040a;

    --panel:rgba(8,12,20,.72);

    --panel-hover:rgba(12,18,28,.82);

    --border:rgba(255,255,255,.08);

    --text:#f8f9ff;

    --muted:#9ba7bb;

    --accent:#ffffff;

    --radius:22px;

    --max-width:1400px;

    --heading:"Audiowide",sans-serif;

    --body:"Poppins",sans-serif;
}

/* ==================================================
   RESET
================================================== */

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:var(--body);

    color:var(--text);

    background:#02040a;

    min-height:100vh;

    overflow-x:hidden;

    position:relative;

    -webkit-font-smoothing:antialiased;

    -moz-osx-font-smoothing:grayscale;
}

/* ==================================================
   SPACE BACKGROUND
================================================== */

body::before{

    content:"";

    position:fixed;

    inset:0;

    background-image:url("../../assets/space-bg.jpeg");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

    z-index:-3;
}

body::after{

    content:"";

    position:fixed;

    inset:0;

    background:

        linear-gradient(

            to bottom,

            rgba(0,0,0,.62),

            rgba(0,0,0,.82)

        );

    z-index:-2;
}

/* ==================================================
   TYPOGRAPHY
================================================== */

h1,
h2,
h3,
h4{

    font-family:var(--heading);

    font-weight:400;

}

p{

    color:var(--muted);

    line-height:1.8;

}

a{

    color:inherit;

    text-decoration:none;

}

/* ==================================================
   BUTTONS
================================================== */

button{

    cursor:pointer;

    border:none;

    outline:none;

    font-family:var(--body);

    transition:.3s ease;

}

.primary-btn{

    width:100%;

    padding:16px;

    border-radius:999px;

    background:

        linear-gradient(

            180deg,

            rgba(255,255,255,.14),

            rgba(255,255,255,.05)

        );

    color:white;

    font-size:14px;

    letter-spacing:2px;

    text-transform:uppercase;

    border:1px solid rgba(255,255,255,.15);

    backdrop-filter:blur(18px);

    font-weight:600;

margin-top:12px;

box-shadow:
    0 0 20px rgba(255,255,255,.08);
}

.primary-btn:hover{

    transform:
        translateY(-3px)
        scale(1.01);

    box-shadow:
        0 0 35px rgba(255,255,255,.18);
}

/* ==================================================
   INPUTS
================================================== */

input{

    width:100%;

    padding:16px 18px;

    margin-bottom:18px;

    border-radius:16px;

    border:1px solid rgba(255,255,255,.08);

    background:rgba(255,255,255,.04);

    color:white;

    font-size:15px;

    font-family:var(--body);

    transition:.3s ease;

    font-weight:400;

margin-bottom:22px;
caret-color:white;
}
input:hover{

    border-color:
        rgba(255,255,255,.12);

}

input::placeholder{

    color:rgba(255,255,255,.38);

}

input:focus{

    outline:none;

    border-color:rgba(255,255,255,.18);

    background:rgba(255,255,255,.06);
}

/* ==================================================
   GLASS CARD
================================================== */

.glass{

    background:var(--panel);

    border:1px solid var(--border);

    border-radius:28px;

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    box-shadow:

        0 10px 40px rgba(0,0,0,.35);
}

/* ==================================================
   LOGIN PAGE
================================================== */

.login-page{

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:40px 20px;
}

.login-card{

    width:100%;

    max-width:560px;

    padding:60px 55px;

    text-align:center;

    background:var(--panel);

    border:1px solid var(--border);

    border-radius:30px;

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    box-shadow:
    0 25px 70px rgba(0,0,0,.45);
}
.login-card{

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.login-card:hover{

    transform:translateY(-3px);

    box-shadow:
        0 30px 80px rgba(0,0,0,.55);
}

.login-logo{

    width:150px;

    margin-bottom:24px;

    opacity:.9;
}

.login-card h1{

    font-size:56px;

    line-height:1.1;

    letter-spacing:3px;

    margin-bottom:14px;
}

.login-card h1 span{

    display:block;

    margin-top:8px;

    font-size:52px;

}

.subtitle{

    margin-bottom:36px;

    letter-spacing:3px;

    text-transform:uppercase;

    font-size:12px;

    color:rgba(255,255,255,.65);
}

.login-error{

    min-height:22px;

    color:#ff6b6b;

    margin-top:10px;

    font-size:14px;
}

.admin-link{

    display:inline-block;

    margin-top:26px;

    color:white;

    opacity:.75;

    transition:.3s;
}

.admin-link:hover{

    opacity:1;
}

/* ==================================================
   SECTION HEADINGS
================================================== */

.section-heading{

    margin-bottom:24px;

    font-size:28px;

}

/* ==================================================
   UTILITIES
================================================== */

.hidden{

    display:none;

}

.center{

    text-align:center;

}

/* ==================================================
   MOBILE
================================================== */

@media(max-width:768px){

    .login-card{

        padding:35px 25px;

    }

    .login-card h1{

        font-size:30px;

    }

    .login-logo{

        width:120px;

    }

}
#loginForm{

    margin-top:10px;

}
/* ==================================================
   DASHBOARD
================================================== */

.dashboard-page{

    width:min(1100px,90%);

    margin:auto;

    padding:60px 0 80px;
}

.dashboard-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:50px;
}

.dashboard-header h1{

    font-size:52px;

    letter-spacing:2px;
}

#logoutBtn{

    padding:14px 28px;

    border-radius:999px;

    background:rgba(255,255,255,.06);

    color:white;

    border:1px solid rgba(255,255,255,.08);

    transition:.3s;
}

#logoutBtn:hover{

    background:rgba(255,255,255,.10);

    transform:translateY(-2px);
}

.welcome{

    margin-bottom:60px;
}

.welcome h2{

    font-size:42px;

    margin-bottom:10px;
}

.welcome p{

    font-size:18px;
}

section{

    margin-bottom:70px;
}

section h2{

    font-size:34px;

    margin-bottom:24px;
}

.event-grid{

    display:grid;

    grid-template-columns:
        repeat(auto-fill,minmax(320px,1fr));

    gap:26px;
}

.event-card{

    background:var(--panel);

    border:1px solid var(--border);

    border-radius:24px;

    padding:28px;

    backdrop-filter:blur(18px);

    transition:.3s ease;
}

.event-card:hover{

    transform:translateY(-6px);

    border-color:rgba(255,255,255,.15);
}

.badge{

    display:inline-block;

    padding:6px 14px;

    margin-bottom:18px;

    border-radius:999px;

    background:rgba(255,255,255,.08);

    font-size:12px;

    letter-spacing:2px;

    text-transform:uppercase;
}

.event-card h3{

    font-size:24px;

    margin-bottom:18px;
}

.event-card p{

    margin-bottom:10px;
}

.event-card button{

    margin-top:22px;
}
/* ==================================================
   DASHBOARD
================================================== */

.dashboard-page{

    width:min(1400px,92%);

    margin:auto;

    padding:50px 0 80px;
}

.dashboard-header{

    position:relative;

    display:flex;

    flex-direction:column;

    align-items:center;

    text-align:center;

    margin-bottom:60px;
}
.dashboard-header h1{

    font-size:50px;

    line-height:1;

    letter-spacing:3px;
}

.dashboard-logo{

    width:200px;

    height:auto;

    display:block;

    margin:0 auto 22px;

    opacity:.95;

    user-select:none;

    pointer-events:none;
}

.portal-subtitle{

    font-size:18px;

    margin-top:12px;

    letter-spacing:1px;

    color:rgba(255,255,255,.75);

}



.logout-btn:hover{

    background:rgba(255,255,255,.10);

    transform:translateY(-2px);
}
/* ==================================================
   WELCOME
================================================== */

.welcome-section{

    margin-bottom:55px;
}

.welcome-label{

    color:var(--muted);

    font-size:17px;

    margin-bottom:10px;
}

#schoolName{

    font-size:52px;

    margin-bottom:20px;
}

.welcome-text{

    font-size:18px;

    max-width:700px;
}   

/* ==================================================
   PROGRESS
================================================== */

.progress-section{

    margin-bottom:50px;
}

.progress-header{

    display:flex;

    justify-content:space-between;

    margin-bottom:15px;

    color:white;
}

.progress-bar{

    width:100%;

    height:12px;

    background:rgba(255,255,255,.06);

    border-radius:999px;

    overflow:hidden;
}

.progress-fill{

    width:0%;

    height:100%;

    background:white;

    transition:.4s;
}

/* ==================================================
   CATEGORY TABS
================================================== */

.category-tabs{

    display:flex;

    gap:14px;

    margin-bottom:45px;

    flex-wrap:wrap;
}

.category-tab{

    padding:14px 28px;

    border-radius:999px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    color:#cdd3df;

    font-size:14px;

    letter-spacing:1px;

    text-transform:uppercase;

    transition:.3s;
}

.category-tab:hover{

    background:rgba(255,255,255,.08);

    color:white;
}

.category-tab.active{

    background:white;

    color:black;

    font-weight:600;
}

/* ==================================================
   EVENT GRID
================================================== */

.event-grid{

    display:grid;

    grid-template-columns:

        repeat(auto-fill,minmax(320px,1fr));

    gap:28px;
}

/* ==================================================
   EVENT CARD
================================================== */

.event-card{

    background:var(--panel);

    border:1px solid var(--border);

    border-radius:28px;

    padding:32px;

    backdrop-filter:blur(18px);

    transition:.3s;
}

.event-card:hover{

    transform:translateY(-6px);

    border-color:rgba(255,255,255,.18);
}

.event-card h3{

    margin:24px 0;

    font-size:34px;
}

.event-card p{

    margin:12px 0;

    font-size:17px;
}

.badge{

    display:inline-block;

    padding:8px 18px;

    border-radius:999px;

    background:rgba(255,255,255,.08);

    font-size:13px;

    letter-spacing:2px;

    text-transform:uppercase;

    color:white;
}

.event-card .primary-btn{

    margin-top:28px;
}

/* ==================================================
   MOBILE DASHBOARD
================================================== */

@media(max-width:768px){

    .dashboard-header{

        flex-direction:column;

        gap:25px;
    }

    .dashboard-header h1{

        font-size:42px;
    }

    #schoolName{

        font-size:34px;
    }

    .category-tabs{

        overflow-x:auto;

        flex-wrap:nowrap;

        padding-bottom:8px;
    }

    .category-tabs::-webkit-scrollbar{

        display:none;
    }
}
/* ==================================================
   EVENT PAGE
================================================== */

.event-page{

    width:min(900px,90%);

    margin:auto;

    padding:50px 0 80px;

}

.event-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:50px;

}

#eventInfo{

    margin-bottom:50px;

}

.event-title{

    font-size:52px;

    text-align:center;

    margin-bottom:15px;

}

.event-summary{

    text-align:center;

    color:var(--muted);

    font-size:18px;

    margin-bottom:40px;

}

.group-card{

    background:var(--panel);

    border:1px solid var(--border);

    border-radius:24px;

    padding:30px;

    margin-bottom:35px;

    backdrop-filter:blur(18px);

}

.group-card h2{

    margin-bottom:10px;

}

.group-info{

    color:var(--muted);

    margin-bottom:30px;

}
.participant-input{

    width:100%;

    margin-bottom:16px;

}
.register-btn-large{

    margin-top:40px;

    width:100%;

}

/* ==========================
   REGISTRATION PANEL
========================== */

.registration-panel{

    width:min(760px,92%);

    margin:-40px auto 100px;

    padding:48px;

    border-radius:30px;

    background:var(--panel);

    border:1px solid var(--border);

    backdrop-filter:blur(20px);

}

.registration-title{

    text-align:center;

    font-size:22px;

    letter-spacing:2px;

    margin-bottom:24px;

}

.panel-divider{

    width:100%;

    height:1px;

    margin-bottom:40px;

    background:

        linear-gradient(

            to right,

            transparent,

            rgba(120,210,255,.25),

            transparent

        );

}

.registration-footer{

    display:flex;
    flex-direction:column;

    justify-content:space-between;

    align-items:center;
    gap:22px;

    margin-top:40px;

}

#namesEntered{

    align-self:flex-start;

    color:rgba(255,255,255,.78);

    font-size:15px;

    letter-spacing:.5px;
}
.portal-btn{

    align-self:center;

    display:inline-flex;

    align-items:center;
    justify-content:center;

    padding:13px 26px;

    border-radius:18px;

    border:1px solid var(--border);

    background:
        linear-gradient(
            180deg,
            rgba(110,210,255,.14),
            rgba(20,40,80,.10)
        );

    color:white;

    font-family:var(--body);

    font-size:13px;

    font-weight:600;

    letter-spacing:1.5px;

    cursor:pointer;

    transition:.3s ease;

    backdrop-filter:blur(18px);
}

.portal-btn:hover{

    transform:translateY(-2px);

    border-color:rgba(255,255,255,.18);

    box-shadow:
        0 0 25px rgba(114,212,255,.18);

}  

.registration-panel{

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}

.registration-panel:hover{

    transform:translateY(-4px);

    border-color:rgba(255,255,255,.12);

    box-shadow:
        0 25px 70px rgba(0,0,0,.45);

}

.dashboard-btn{
    position:absolute;
    top:28px;
    left:28px;
}

.logout-btn{
    position:absolute;
    top:28px;
    right:28px;
}

.portal-btn:disabled{

    opacity:.55;

    cursor:not-allowed;

    transform:none;

}

.participant-input:disabled{

    opacity:.75;

    cursor:default;

    background:rgba(255,255,255,.025);

}

.participant-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 190px;
    gap: 12px;
    margin-bottom: 12px;
}

.participant-row .participant-input {
    width: 100%;
    margin: 0;
}

.participant-phone {
    letter-spacing: 0.5px;
}

@media (max-width: 600px) {
    .participant-row {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-bottom: 18px;
    }
}

/* ==========================================
   ADMIN DASHBOARD
========================================== */

.admin-dashboard-page {
    min-height: 100vh;
    padding: 30px;
}

.admin-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.admin-dashboard-header h1 {
    margin: 0 0 6px;
}

.admin-dashboard-header p {
    margin: 0;
    opacity: 0.7;
}

.admin-dashboard-main {
    width: min(1400px, 100%);
    margin: 0 auto;
}

.admin-summary {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 24px;
}

.admin-stat-card {
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    background: rgba(10, 15, 35, 0.75);
    text-align: center;
}

.admin-stat-card span {
    display: block;
    font-family: "Audiowide", sans-serif;
    font-size: 2rem;
    margin-bottom: 5px;
}

.admin-stat-card p {
    margin: 0;
    opacity: 0.75;
}

.admin-content-layout {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}

.admin-schools-panel,
.admin-registration-panel {
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    background: rgba(10, 15, 35, 0.78);
    padding: 20px;
}

.admin-schools-panel {
    position: sticky;
    top: 20px;
}

.admin-panel-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.admin-panel-heading h2 {
    margin: 0;
}

#schoolSearch {
    width: 100%;
    margin-bottom: 15px;
}

.admin-schools-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
    max-height: 65vh;
    overflow-y: auto;
}

.admin-school-item {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.04);
    color: inherit;
    cursor: pointer;
    text-align: left;
}

.admin-school-item:hover,
.admin-school-item.active {
    border-color: rgba(120, 160, 255, 0.8);
    background: rgba(90, 130, 255, 0.12);
}

.admin-school-name {
    font-weight: 500;
}

.admin-school-count {
    white-space: nowrap;
    font-size: 0.82rem;
    opacity: 0.7;
}

.admin-empty-state {
    padding: 70px 25px;
    text-align: center;
    opacity: 0.75;
}

.admin-school-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.admin-school-header h2 {
    margin: 4px 0 8px;
}

.admin-school-header p {
    margin: 0;
    opacity: 0.7;
}

.admin-section-label {
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.75rem;
}

.admin-school-summary {
    text-align: center;
}

.admin-school-summary strong {
    display: block;
    font-size: 1.8rem;
}

.admin-school-summary span {
    font-size: 0.8rem;
    opacity: 0.7;
}

.admin-registration-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.admin-registration-card {
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.035);
}

.admin-registration-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.admin-registration-heading h3 {
    margin: 0 0 6px;
}

.admin-registration-heading p {
    margin: 0;
    font-size: 0.86rem;
    opacity: 0.65;
}

.admin-participant-count {
    white-space: nowrap;
    font-size: 0.85rem;
    opacity: 0.75;
}

.admin-group-section {
    margin-top: 18px;
}

.admin-group-section h4 {
    margin: 0 0 10px;
}

.admin-table-wrapper {
    overflow-x: auto;
}

.admin-participant-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-participant-table th,
.admin-participant-table td {
    padding: 11px 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-align: left;
}

.admin-participant-table th {
    background: rgba(255, 255, 255, 0.07);
    font-weight: 500;
}

.admin-loading,
.admin-error,
.admin-empty-message {
    padding: 20px 5px;
    text-align: center;
    opacity: 0.7;
}

@media (max-width: 850px) {

    .admin-dashboard-page {
        padding: 18px;
    }

    .admin-summary {
        grid-template-columns: 1fr;
    }

    .admin-content-layout {
        grid-template-columns: 1fr;
    }

    .admin-schools-panel {
        position: static;
    }

    .admin-schools-list {
        max-height: none;
    }

    .admin-dashboard-header,
    .admin-school-header,
    .admin-registration-heading {
        flex-direction: column;
    }
}

.admin-registration-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.admin-edit-name,
.admin-edit-phone {
    width: 100%;
    min-width: 160px;
    padding: 9px 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.05);
    color: inherit;
}

.admin-edit-name:disabled,
.admin-edit-phone:disabled {
    padding-left: 0;
    border-color: transparent;
    background: transparent;
    opacity: 1;
}

.admin-reset-registration {
    padding: 10px 16px;
    border: 1px solid rgba(255, 90, 90, 0.55);
    border-radius: 8px;
    background: rgba(255, 70, 70, 0.08);
    color: inherit;
    cursor: pointer;
}

.admin-reset-registration:hover {
    background: rgba(255, 70, 70, 0.18);
}

.registration-status-card button {
    margin-top: 12px;
}

.registration-status-open {
    color: #8dffb0;
}

.registration-status-closed {
    color: #ff8f8f;
}

@media (max-width: 1100px) {
    .admin-summary {
        grid-template-columns: repeat(2, 1fr);
    }
}

.admin-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

@media (max-width: 600px) {
    .admin-header-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }
}

.admin-dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.admin-header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.admin-btn {
    appearance: none;
    -webkit-appearance: none;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 44px;
    padding: 11px 18px;

    border: 1px solid transparent;
    border-radius: 999px;

    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 500;

    line-height: 1;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease;
}

.admin-btn[hidden] {
    display: none !important;
}

.admin-btn:hover:not(:disabled) {
    transform: translateY(-2px);
}

.admin-btn:active:not(:disabled) {
    transform: translateY(0);
}

.admin-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.admin-btn-primary {
    border-color: rgba(95, 190, 255, 0.3);

    background:
        linear-gradient(
            180deg,
            rgba(75, 165, 255, 0.22),
            rgba(40, 95, 190, 0.16)
        );

    color: white;

    box-shadow:
        0 0 18px rgba(75, 165, 255, 0.1);
}

.admin-btn-primary:hover:not(:disabled) {
    border-color: rgba(95, 200, 255, 0.52);

    background:
        linear-gradient(
            180deg,
            rgba(90, 185, 255, 0.3),
            rgba(45, 105, 205, 0.22)
        );

    box-shadow:
        0 0 24px rgba(75, 165, 255, 0.18);
}

.admin-btn-secondary {
    border-color: rgba(255, 255, 255, 0.14);

    background:
        rgba(255, 255, 255, 0.04);

    color:
        rgba(255, 255, 255, 0.82);
}

.admin-btn-secondary:hover:not(:disabled) {
    border-color: rgba(95, 190, 255, 0.34);

    background:
        rgba(75, 165, 255, 0.08);

    color: white;
}

.admin-btn-danger {
    border-color: rgba(255, 100, 120, 0.24);

    background:
        rgba(255, 70, 95, 0.08);

    color:
        rgba(255, 220, 225, 0.92);
}

.admin-btn-danger:hover:not(:disabled) {
    border-color: rgba(255, 100, 120, 0.5);

    background:
        rgba(255, 70, 95, 0.15);

    color: white;

    box-shadow:
        0 0 20px rgba(255, 70, 95, 0.12);
}

@media (max-width: 700px) {

    .admin-dashboard-header {
        align-items: stretch;
        flex-direction: column;
    }

    .admin-header-actions {
        width: 100%;
    }

    .admin-header-actions .admin-btn {
        flex: 1;
    }

    .admin-panel-heading {
        align-items: center;
        gap: 12px;
    }

    .admin-panel-heading .admin-btn {
        flex-shrink: 0;
    }
}

/* Registration event-card hierarchy */

.registration-event-content {
  text-align: left;
}

.registration-event-name {
  margin: 0 0 8px;

  color: #ffffff;

  font-family: var(--ff-heading);
  font-size: clamp(23px, 2vw, 32px);
  font-weight: 700;
  line-height: 1.08;

  letter-spacing: 0.4px;
  text-transform: uppercase;

  text-shadow:
    0 0 20px rgba(90, 185, 255, 0.2);
}

.registration-event-title {
  margin: 0 0 14px;

  color: rgba(155, 205, 240, 0.78);

  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;

  letter-spacing: 2px;
  text-transform: uppercase;
}

.registration-event-category {
  margin: 0 0 18px;

  color: rgba(130, 205, 255, 0.75);

  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.registration-count-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin: 34px 0 30px;
  padding: 18px 22px;

  border: 1px solid rgba(115, 185, 235, 0.15);
  border-radius: 18px;

  background: rgba(7, 14, 27, 0.72);
  backdrop-filter: blur(14px);
}

.registration-count-summary span {
  color: rgba(255, 255, 255, 0.68);

  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.registration-count-summary strong {
  color: #ffffff;

  font-family: var(--ff-heading);
  font-size: 18px;
  letter-spacing: 1px;
}

/* ==================================================
   PASSWORD VISIBILITY BUTTON
================================================== */

.password-field {
  position: relative;
  display: block;
  width: 100%;
}

.password-field > input {
  display: block;
  width: 100%;
  padding-right: 58px;
}

.password-field > .password-toggle {
  position: absolute !important;

  top: 50% !important;
  right: 14px !important;
  bottom: auto !important;
  left: auto !important;

  transform: translateY(-50%) !important;

  width: 38px !important;
  min-width: 38px !important;
  max-width: 38px !important;

  height: 38px !important;
  min-height: 38px !important;
  max-height: 38px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  padding: 0 !important;
  margin: 0 !important;

  border: 0 !important;
  border-radius: 50% !important;

  background: transparent !important;
  box-shadow: none !important;

  color: rgba(255, 255, 255, 0.64);

  cursor: pointer;
  z-index: 5;
}

.password-field > .password-toggle:hover {
  color: white;
  background: rgba(255, 255, 255, 0.06) !important;
}

.password-eye {
  display: block;

  width: 17px;
  height: 17px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;

  pointer-events: none;
}

.password-eye-hide {
  display: none;
}

.password-toggle.password-visible
.password-eye-show {
  display: none;
}

.password-toggle.password-visible
.password-eye-hide {
  display: block;
}

.back-to-site {
  display: inline-block;

  margin-top: 18px;

  color: rgba(255, 255, 255, 0.65);

  font-size: 13px;
  letter-spacing: 1px;

  text-decoration: none;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.back-to-site:hover {
  color: white;
  transform: translateX(-3px);
}

.login-links {
  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 12px;
  margin-top: 30px;
}

.admin-link,
.back-to-site {
  display: inline-block;

  margin: 0;

  color: rgba(255, 255, 255, 0.68);

  font-size: 14px;
  text-decoration: none;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.admin-link:hover {
  color: white;
  transform: translateX(3px);
}

.back-to-site {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.52);
}

.back-to-site:hover {
  color: white;
  transform: translateX(-3px);
}