
/* Header and NavBar */
body {
    background: black;
    color: white;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100dvh;
    padding-top: 120px;
}

.header {
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    background: black;
    padding: 20px;
    border-bottom: 2px solid #fc0fc0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    z-index: 1000;
}

.header .logo {
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3em;
}

.navbar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.navbar a:hover {
    color: #fc0fc0;
    text-shadow: 0 0 8px #fc0fc0;
}


/* Other CSS FIle Copy */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}


/* Center container for navigation card */
.auth-container {
    position: relative;
    width: 600px;
    height: 500px;
}

/* nav card */
.nav-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;

    gap: 20px; 

    background: transparent;
    border: 5px solid #ffff33;
    border-radius: 10px;
    box-shadow: 0 0 20px #ffff33, inset 0 0 20px #ffff33;

    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;

    padding: 40px 30px; 
}

.nav-card p {
    text-align: center;
    max-width: 400px;
    line-height: 1.5;
    opacity: 0.9;
    font-weight: 500;
}



.nav-card.active {
    opacity: 1;
    pointer-events: auto;
}

/* Headings */
h2 {
    font-size: 1.75em;
    text-align: center;
    color: #fc0fc0;
}


/* Buttons */
.btn {
    display: flex;
    justify-content: center;
    align-items: center;

    height: 45px;
    background: #333;
    border-radius: 5px;
    color: #fff;
    font-size: 1em;
    font-weight: 500;
    text-decoration: none;

    transition: 0.2s;
}

.btn:hover {
    background: #fc0fc0;
    color: #000;
    box-shadow: 0 0 20px #fc0fc0;
}

.button-group {
    display: flex;
    gap: 15px;
    width: 100%;
    
}

.button-group .btn {
    flex: 1; 
}


/* Media Responsiveness */
@media (max-width: 600px) {
    .auth-container {
        width: 90%;
    }
}







