* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: #e0e0e0;
    text-align: center;
    padding: 40px 20px;
    min-height: 100vh;
}

h1 {
    font-style: italic;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #ffffff;
    text-shadow: 0 2px 10px #00ffff33;
}

label {
    font-size: 1.2rem;
    color: #cfcfcf;
}

input[type="text"] {
    padding: 10px 15px;
    font-size: 1rem;
    margin: 10px 0;
    border-radius: 8px;
    border: 1px solid #444;
    background-color: #1a1a1a;
    color: #fff;
    outline: none;
    width: 200px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input[type="text"]:focus {
    border-color: #00bcd4;
    box-shadow: 0 0 8px #00bcd488;
}

input[type="submit"],
input[type="reset"] {
    padding: 10px 25px;
    font-size: 1rem;
    margin: 12px 8px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(45deg, #00bcd4, #2196f3);
    color: white;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

input[type="submit"]:hover,
input[type="reset"]:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.4);
}

h2 {
    margin-top: 25px;
    color: #a0d6ff;
    text-shadow: 0 0 4px #00bcd4aa;
}
