body {
    background-color: #f4f4f4;
    font-family: Arial, sans-serif;
}
.container {
    margin: 80px auto;
    width: 400px;
    padding: 30px;
    background: white;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.logo {
    width: 100px;
    margin-bottom: 10px;
}
h1 {
    color: #5e2ca5;
    margin-bottom: 5px;
}
.slogan {
    color: #888;
    margin-bottom: 20px;
}
input, select, button {
    width: 90%;
    padding: 12px;
    margin-top: 10px;
    font-size: 16px;
}
button {
    background-color: #5e2ca5;
    color: white;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}
button:hover {
    background-color: #431c82;
}