* {
    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;
    overflow: hidden; /* Prevent scrollbar */
    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);
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #e0e0e0;
    font-size: 1.2rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #bb86fc;
}

main {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    padding-top: 3PX;
    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;
    margin: 20px;
}

h2 {
    font-size: 2.1rem;
    color: #ffffff;
    background: linear-gradient(90deg, #bb86fc, #03dac6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    text-align: center;
    margin-top: 10px;
}

label {
    font-size: 1.2rem;
    display: block;
    margin-bottom: 8px;
    text-align: left;
    color: #e0e0e0;
}

input {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    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 {
    background: linear-gradient(90deg, #bb86fc, #03dac6);
    color: #121212;
    padding: 15px 40px;
    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: 10px;
    position: fixed;
    bottom: 0;
    left: 0;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.4);
}

footer p {
    font-size: 1rem;
    color: #e0e0e0;
}
