        body {
            user-select: none;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            margin: 0;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }
        .container {
            background: rgba(163, 201, 156, 0.95);
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            width: 90%;
            max-width: 500px;
        }
        h1 {
            color: #2c3e50;
            text-align: center;
            margin-bottom: 1.5rem;
        }
        .info-item {
            margin: 1.2rem 0;
            padding: 1rem;
            background: #4CAF50;
            border-radius: 8px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .info-item2 {
            margin: 1.2rem 0;
            padding: 1rem;
            background: #4CAF50;
            border-radius: 8px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .label {
            color: #000000;
            font-weight: 500;
        }
       
        input{             
             line-height: 30px;
             width: 80%;
             border: none;
        }

        .but{
            background-color: #4CAF50;
            font-size: larger;
        }
        .but:hover{
            transform: scale(1.05);
        }
     
