body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: transparent;
    margin: 0;
    font-family: Arial, sans-serif;
}

.container {
    background: linear-gradient(to bottom right, #3b3bff, #a04bff);
    border-radius: 8px;
    padding: 20px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.container h2 {
    color: white;
    text-align: center;
}

.container form {
    display: flex;
    flex-direction: column;
}

.container input[type="email"],
.container input[type="password"],
.container input[type="text"] {
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 4px;
}

.container input[type="checkbox"] {
    margin: 10px 0;
}

.container button {
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 4px;
    background: #7a00cc;
    color: white;
    cursor: pointer;
}

.container button:hover {
    background: #6900b8;
}

.container .link {
    text-align: center;
    margin: 10px 0;
}

.container .link a {
    color: white;
    text-decoration: none;
}

.container .link a:hover {
    text-decoration: underline;
}