body {
    font-family: 'Arial', sans-serif;
    background: #f0f0f7;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.form-container {
    background: linear-gradient(145deg, #27b065, #17fd23);
    padding: 2em;
    border-radius: 1em;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
    width: 300px;
}

h2 {
    color: white;
    text-align: center;
    margin-bottom: 20px;
}

.input-group {
    margin-bottom: 15px;
}

.input-group label {
    margin-bottom: 5px;
}

.input-group input {
    width: calc(100% - 20px);
    padding: 10px;
    margin: 5px;
    border: none;
    border-radius: 5px;
}

button {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: none;
    border-radius: 5px;
    background-color: #ff9800;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #fb8c00;
}
