body, h2, p, form, input, button {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
h1 {
    width: 90%;
    background: #000000;
    padding: 15px 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.349);
    animation: fadeInDown 1s ease-in-out;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
h1 {
    display: flex;
    align-items: center;
    font-size: 34px;
    color: #ffffff;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #121212;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

#container {
    background: #1e1e1e;
    padding: 20px 30px;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 255);
    border-radius: 10px;
    max-width: 400px;
    width: 100%;
}
h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
}
form {
    display: flex;
    flex-direction: column;
}
input[type="text"],
input[type="email"],
input[type="password"] {
    background: #000000;
    color: #ffffff;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #BB86FC;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
    background: #ffffff;
    color: #000000;
    border-color: #03DAC6;
    outline: none;
}
button {
    padding: 10px;
    border: none;
    background: #BB86FC;
    color: #000000;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}
button:hover {
    background: #03DAC6;
}
p {
    text-align: center;
    color: #dbdada;
    margin-top: 10px;
}
p a {
    color: #BB86FC;
    text-decoration: none;
    transition: color 0.3s ease;
}
p a:hover {
    color: #03DAC6;
}