body {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    font-family: 'Lilita One', cursive;
    height: 100vh;
    margin: 0;
    color: #fff;
    min-height: 100vh;
}

.login-container {
    background: rgba(34, 40, 49, 0.97);
    padding: 3rem 3.5rem 2.5rem 3.5rem;
    border-radius: 28px;
    box-shadow: 0 0 32px 8px #7b2cbf, 0 0 16px 4px #38bdf8;
    width: 400px;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 2;
    margin: 6vh auto 0 auto;
    display: block;
}

.login-container::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -60px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, #38bdf8 0%, transparent 70%);
    opacity: 0.18;
    z-index: 1;
}

.login-container::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, #7b2cbf 0%, transparent 70%);
    opacity: 0.18;
    z-index: 1;
}

h1 {
    font-family: 'Audiowide', cursive;
    font-size: 2.7rem;
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 24px #7b2cbf, 0 0 12px #38bdf8;
    letter-spacing: 2px;
    z-index: 2;
    position: relative;
}

label {
    display: block;
    margin-top: 1.2rem;
    font-size: 1.15rem;
    text-align: left;
    color: #38bdf8;
    font-weight: bold;
    letter-spacing: 1px;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 0.7rem 1rem;
    margin-top: 0.4rem;
    border-radius: 10px;
    border: none;
    font-size: 1.08rem;
    background: #232946;
    color: #fff;
    box-shadow: 0 2px 8px #23294644;
    outline: none;
    transition: box-shadow 0.2s;
}
input[type="text"]:focus,
input[type="password"]:focus {
    box-shadow: 0 0 0 2px #38bdf8;
}

.button {
    margin-top: 2rem;
    background: linear-gradient(90deg, #7b2cbf 0%, #38bdf8 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 0.8rem 2.2rem;
    font-size: 1.15rem;
    font-family: 'Lilita One', cursive;
    font-weight: bold;
    letter-spacing: 1px;
    box-shadow: 0 2px 12px #7b2cbf44;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
.button:hover {
    background: linear-gradient(90deg, #38bdf8 0%, #7b2cbf 100%);
    transform: scale(1.05);
}

.error-message {
    color: #ff4d6d;
    margin-top: 1.2rem;
    font-size: 1.05rem;
    background: rgba(255,77,109,0.08);
    border-radius: 8px;
    padding: 0.5rem 0.8rem;
    box-shadow: 0 0 8px #ff4d6d33;
}

.signup-link {
    margin-top: 2rem;
    display: block;
    font-size: 1.08rem;
    color: #38bdf8;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 1px;
    transition: color 0.2s;
    z-index: 2;
    position: relative;
}
.signup-link:hover {
    color: #7b2cbf;
    text-decoration: underline;
}

@media (max-width: 500px) {
    .login-container {
        width: 95vw;
        padding: 1.5rem 0.5rem;
    }
    h1 {
        font-size: 2rem;
    }
}


