body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
    color: #ffffff;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
    max-width: 800px;
    width: 100%;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

h1, h2 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 20px;
}

.input-box {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

input[type="text"] {
    width: 70%;
    padding: 10px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    margin-right: 10px;
    outline: none;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    background: #ff4b2b;
    background: linear-gradient(to right, #ff416c, #ff4b2b);
    color: #ffffff;
    transition: background 0.3s ease;
}

button:hover {
    background: linear-gradient(to right, #ff4b2b, #ff416c);
}

textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    margin-bottom: 20px;
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    resize: none;
}
