@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;600&display=swap');

body {
    background-color: #111;
    color: #ddd;
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background: #222;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    width: 400px;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
}

h1 {
    font-size: 24px;
    color: #ff77ff;
    text-shadow: 0 0 10px #ff77ff;
}

p a {
    color: red;
    text-decoration: none;
}

.input-box {
    margin: 15px 0;
    display: flex;
    gap: 10px;
}

input {
    flex: 1;
    padding: 10px;
    border: 1px solid #555;
    border-radius: 5px;
    background: #333;
    color: #fff;
}

button {
    padding: 10px 15px;
    background: #444;
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background: #666;
}

textarea {
    width: 100%;
    height: 150px;
    background: #333;
    border: 1px solid #555;
    color: #fff;
    border-radius: 5px;
    padding: 10px;
    resize: none;
}
