/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
}

header {
    width: 100%;
    background-color: rgba(28, 28, 28, 0.9);
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    position: fixed;
    top: 0;
    left: 0;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    text-decoration: none;
    color: #e0e0e0;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #bb86fc;
}

main {
    width: 100%;
    max-width: 400px;
    margin-top: 100px;
    padding: 30px;
    background-color: rgba(28, 28, 28, 0.95);
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.8);
    text-align: center;
}

h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #ffffff;
}

label {
    font-size: 1.1rem;
    display: block;
    margin-bottom: 10px;
    text-align: left;
}

input {
    width: 100%;
    padding: 15px;
    margin-bottom: 25px;
    border: none;
    border-radius: 8px;
    background-color: #1a1a1a;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

input:focus {
    outline: none;
    border: 2px solid #bb86fc;
}

button {
    width: 100%;
    background: linear-gradient(90deg, #bb86fc, #03dac6);
    color: #121212;
    padding: 15px 0;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(187, 134, 252, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(187, 134, 252, 0.8);
}

footer {
    width: 100%;
    background-color: rgba(28, 28, 28, 0.9);
    text-align: center;
    padding: 15px;
    position: fixed;
    bottom: 0;
    left: 0;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.4);
}

footer p {
    font-size: 1rem;
} 

/* Responsive Design */
@media (max-width: 768px) {
    main {
        width: 90%;
        margin-top: 120px;
    }
}

@media (max-width: 480px) {
    nav ul li a {
        font-size: 1rem;
    }
    h2 {
        font-size: 1.5rem;
    }
} 
