body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(to right, #ffffff, #a78bfa);
}

.container {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 600px;
    padding: 20px;
}

h1 {
    text-align: center;
    color: #4a5568;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #4a5568;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.button {
    width: 100%;
    background: #6d28d9;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.button:hover {
    background: #4c1d95;
}

.link {
    text-align: center;
    margin-top: 10px;
}

.link a {
    color: #6d28d9;
    text-decoration: none;
    font-size: 14px;
}

.link a:hover {
    text-decoration: underline;
}