* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: blueviolet;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

section {
    width: 800px;
    max-width: 90%;
    padding: 50px;
    border: 2px solid #fff;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* 🔹 Heading style */
.heading {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0px 2px 5px rgba(0,0,0,0.3);
}

/* Input box */
.input-box {
    background: #fff;
    width: 100%;
    max-width: 500px;
    border-radius: 5px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.input-box input {
    width: 100%;
    padding: 10px 0;
    border: none;
    outline: none;
    font-size: 18px;
    color: #555;
}

.input-box img {
    width: 30px;
    cursor: pointer;
}

/* Button styling */
.input-box button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(90deg, #8e2de2, #4a00e0);
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.input-box button:hover {
    background: linear-gradient(90deg, #4a00e0, #8e2de2);
    transform: translateY(-2px);
}
