body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        background: #5a5858;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
        margin: 0;
    }

    .box {
        background: white;
        padding: 30px 40px;
        border-radius: 12px;
        box-shadow: 0 8px 16px rgba(209, 208, 208, 0.1);
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .box:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    }

    .box h2 {
        margin-bottom: 20px;
        color: #333;
    }

    .box input[type="text"] {
        padding: 10px;
        width: 100%;
        max-width: 300px;
        border: 1px solid #ccc;
        border-radius: 6px;
        margin-bottom: 15px;
        font-size: 16px;
        transition: border-color 0.3s;
    }

    .box input[type="text"]:focus {
        outline: none;
        border-color: #007bff;
    }

    .box button {
        padding: 10px 20px;
        font-size: 16px;
        background: #007bff;
        color: white;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        transition: background 0.3s ease, transform 0.2s;
    }

    .box button:hover {
        background: #0056b3;
        transform: scale(1.05);
    }

    #box {
        margin-top: 20px;
    }

